mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 21:00:06 +01:00
initial rebuild
This commit is contained in:
24
internal/assets/emails/example.tmpl
Normal file
24
internal/assets/emails/example.tmpl
Normal file
@@ -0,0 +1,24 @@
|
||||
{{define "subject"}}Example subject{{end}}
|
||||
|
||||
{{define "plainBody"}}
|
||||
Hi {{.Name}},
|
||||
|
||||
This is an example body
|
||||
|
||||
Sent at: {{now}}
|
||||
{{end}}
|
||||
|
||||
{{define "htmlBody"}}
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
</head>
|
||||
<body>
|
||||
<p>Hi {{.Name}},</p>
|
||||
<p>This is an example body</p>
|
||||
<p>Sent at: {{now}}</p>
|
||||
</body>
|
||||
</html>
|
||||
{{end}}
|
||||
Reference in New Issue
Block a user