change_email.txt 428 B

1234567891011121314
  1. {% extends "misago/emails/base.txt" %}
  2. {% load i18n misago_absoluteurl %}
  3. {% block content %}
  4. {% blocktrans trimmed with user=user %}
  5. {{ user }}, you are receiving this message because you have changed your e-mail address.
  6. {% endblocktrans %}
  7. {% blocktrans trimmed %}
  8. To confirm this change, click the link below:
  9. {% endblocktrans %}
  10. {% absoluteurl 'misago:options-confirm-email-change' token=token %}
  11. {% endblock content %}