Files
cloudron-box/src/mail_templates/password_reset.ejs

46 lines
1.0 KiB
Plaintext
Raw Normal View History

<%if (format === 'text') { %>
Hi <%= user.displayName || user.username || user.email %>,
2017-01-29 14:23:27 -08:00
Someone, hopefully you, has requested your account's password
be reset. If you did not request this reset, please ignore this message.
To reset your password, please visit the following page:
<%- resetLink %>
2020-07-16 15:08:36 -07:00
Please note that the password reset link will expire in 24 hours.
Powered by https://cloudron.io
<% } else { %>
2016-10-13 16:44:09 +02:00
<center>
<img src="<%= cloudronAvatarUrl %>" width="128px" height="128px"/>
<h3>Hi <%= user.displayName || user.username || user.email %>,</h3>
2016-10-13 16:44:09 +02:00
<p>
2017-01-29 14:23:27 -08:00
Someone, hopefully you, has requested your account's password be reset.<br/>
2016-10-13 16:44:09 +02:00
If you did not request this reset, please ignore this message.
</p>
<p>
<a href="<%= resetLink %>">Click to reset your password</a>
</p>
2020-07-16 15:08:36 -07:00
<br/>
Please note that the password reset link will expire in 24 hours.
<br/>
<br/>
<div style="font-size: 10px; color: #333333; background: #ffffff;">
2017-01-29 14:23:27 -08:00
Powered by <a href="https://cloudron.io">Cloudron</a>
</div>
</center>
2016-10-13 16:44:09 +02:00
<% } %>