netlify-cms-react-starter/public/admin/email-templates/email-change.heml
2018-01-25 13:50:30 +10:00

26 lines
689 B
Text

<heml>
<head>
<subject>Confirm Change of Email</subject>
<style>
body {
text-align: center;
}
.button {
background: #ff3d3d;
}
.logo {
margin: auto;
width: 100px;
height: auto;
}
</style>
</head>
<body>
<container>
<img class='logo' src='https://netlify-cms-react-starter.netlify.com/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>