Files
Gardomatic/internal/mailer/templates/test_mail.tmpl
T
kleiax 904d14b64c
CI / test (push) Canceled after 0s
Initial commit
2026-09-12 22:22:17 +02:00

26 lines
565 B
Cheetah

{{define "subject"}}Gardomatic Testmail{{end}}
{{define "plainBody"}}
Hallo,
diese Testmail bestätigt, dass der Mailversand von Gardomatic funktioniert.
Viele Grüße
Gardomatic
{{end}}
{{define "htmlBody"}}
<!doctype html>
<html lang="de">
<head>
<meta name="viewport" content="width=device-width">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<p>Hallo,</p>
<p>diese Testmail bestätigt, dass der Mailversand von Gardomatic funktioniert.</p>
<p>Viele Grüße<br>Gardomatic</p>
</body>
</html>
{{end}}