listmonk/static/email-templates/subscriber-optin-campaign.html

18 lines
495 B
HTML
Raw Normal View History

{{ define "optin-campaign" }}
2020-12-19 11:55:52 +01:00
<p>{{ .L.Ts "email.optin.confirmSubWelcome" "name" .Subscriber.FirstName }}</p>
<p>{{ .L.T "email.optin.confirmSubInfo" }}</p>
<ul>
{{ range $i, $l := .Lists }}
{{ if eq .Type "public" }}
<li>{{ .Name }}</li>
{{ else }}
2020-12-19 11:55:52 +01:00
<li>{{ .L.T "email.optin.privateList" }}</li>
{{ end }}
{{ end }}
</ul>
<p>
2020-12-19 11:55:52 +01:00
<a class="button" {{ .OptinURLAttr }} class="button">{{ .L.T "email.optin.confirmSub" }}</a>
</p>
{{ end }}