36 lines
850 B
Cheetah
36 lines
850 B
Cheetah
{{define "subject"}}Welcome to Digitale Partei Österreich!{{end}}
|
|
|
|
{{define "plainBody"}}
|
|
Hi,
|
|
|
|
Thanks for signing up for a Digitale Partei Österreich account. We're excited to have you on board!
|
|
For future reference, your user ID number is {{.ID}}.
|
|
|
|
Your activation token is {{.token}}
|
|
|
|
Thanks,
|
|
|
|
The DigitalePartei Team
|
|
{{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,</p>
|
|
<p>Thanks for signing up for a Digitale Partei Österreich account. We're excited to have you on board!</p>
|
|
<p>For future reference, your user ID number is {{.ID}}.</p>
|
|
<p>Your activation token is {{.token}}</p>
|
|
<p>Thanks,</p>
|
|
<p>The DigitalePartei Team</p>
|
|
</body>
|
|
|
|
</html>
|
|
{{end}}
|