##// END OF EJS Templates
emails: updated emails design and data structure they provide....
emails: updated emails design and data structure they provide. - more consistent UI for emails - nicer formatting, plaintext emails - major cleanup and fixes lots of incosistencies - additionally debug-style now allows to test emails in browser for faster development

File last commit:

r4038:4a4a02a9 default
r4038:4a4a02a9 default
Show More
password_reset_confirmation.mako
31 lines | 915 B | application/x-mako | MakoHtmlLexer
/ rhodecode / templates / email_templates / password_reset_confirmation.mako
## -*- coding: utf-8 -*-
<%inherit file="base.mako"/>
<%namespace name="base" file="base.mako"/>
<%def name="subject()" filter="n,trim,whitespace_filter">
Your new RhodeCode password
</%def>
## plain text version of the email. Empty by default
<%def name="body_plaintext()" filter="n,trim">
Hello ${user.username},
Below is your new access password for RhodeCode requested via password reset link.
*If you did not request a password reset, please contact your RhodeCode administrator at: ${first_admin_email}.*
new password: ${new_password}
---
${self.plaintext_footer()}
</%def>
## BODY GOES BELOW
<p>
Hello ${user.username},
</p><p>
Below is your new access password for RhodeCode requested via password reset link.
<br/><br/>
<strong>If you did not request a password reset, please contact your RhodeCode administrator at: ${first_admin_email}.</strong>
</p>
<p>new password: <code>${new_password}</code>