NDOJ/templates/registration/activation_email.html

17 lines
723 B
HTML
Raw Normal View History

2023-08-25 20:36:38 +00:00
{% set url_path = "/accounts/activate/" + activation_key %}
{% set title = _("Account activation") %}
{% set message = _("Thanks for registering! We're glad to have you. The last step is activating your account. Please activate your account in the next %(expiration_days)d days.", expiration_days=expiration_days) %}
{% set username = user.get_username() %}
{% set button_text = _("Activate") %}
{% set domain = site.domain %}
{% set protocol = "http" %}
{% include "general_email.html" %}
<br>
{{_("Alternatively, you can reply to this message to activate your account. Your reply must keep the following text intact for this to work:")}}
2020-01-21 06:35:58 +00:00
<pre style="margin-left:1em">
{{ activation_key }}
</pre>
2023-08-25 20:36:38 +00:00
{{_("See you soon!")}}