source: OpenWorkouts-current/ow/templates/mail_verify_account_txt.pt @ 737eb6c

currentfeature/docs
Last change on this file since 737eb6c was b8ef4ab, checked in by Borja Lopez <borja@…>, 5 years ago

(#61) Better templates for "verify your account" emails:

  • Send a multipart text/html email (instead text only)
  • Added some styling to the html version of the email, based on our current login page styles.

Important: as the html version contains html code generated using
request.resource_url() and request.static_url(), when running in
development mode under http://localhost, the links to images
and css files in the rendered email point to localhost, so they
won't work outside the machine running openworkouts.

  • Property mode set to 100644
File size: 686 bytes
Line 
1<html tal:omit-tag=""
2      xmlns:i18n="http://xml.zope.org/namespaces/i18n"
3      i18n:domain="OpenWorkouts">
4
5  <tal:t i18n:translate="">Welcome to OpenWorkouts</tal:t>
6  <tal:user tal:content="user.fullname"></tal:user>
7
8  <tal:t i18n:translate="">
9    You have joined the OpenWorkouts community successfully,
10    now please verify your account.
11  </tal:t>
12
13  <tal:t i18n:translate="">
14    Click on the following link, or copy and paste it in your browser
15    navigation bar to verify your account:
16  </tal:t>
17
18  <tal:link tal:content="verify_link"></tal:link>
19
20  <tal:t i18n:translate>
21    Thank you for joining us.
22
23    Best regards from the OpenWorkouts team.
24  </tal:t>
25
26</html>
Note: See TracBrowser for help on using the repository browser.