netlify-cms-react-starter/public/admin/email-templates/email-change.heml
2018-01-29 13:11:28 +10:00

26 lines
663 B
Text

<heml>
<head>
<subject>Confirm Change of Email</subject>
<style>
body {
text-align: center;
}
.button {
background: #366dc7;
}
.logo {
margin: 25px auto;
width: 100px;
height: auto;
}
</style>
</head>
<body>
<container>
<img class='logo' src='{{ .SiteURL }}/images/logo.png' />
<h2>Confirm Change of Email</h2>
<p>Follow this link to confirm the update of your email from {{ .Email }} to {{ .NewEmail }}:</p>
<button class='button' href="{{ .ConfirmationURL }}" style="margin: auto;">Change Email</button>
</container>
</body>
</heml>