app-MAIL-temp/templates/emails/transactional/change-email.html

13 lines
476 B
HTML
Raw Normal View History

2019-11-20 21:58:25 +01:00
{% extends "base.html" %}
2019-11-18 19:34:53 +01:00
2019-11-20 21:58:25 +01:00
{% block content %}
{{ render_text("Hi " + name) }}
2020-02-12 12:38:18 +01:00
{{ render_text("You recently requested to change your email on SimpleLogin to <b>"+ new_email +"</b>.") }}
2020-02-12 06:51:31 +01:00
{{ render_text("Your current email is " + current_email + ".") }}
2020-02-12 12:38:18 +01:00
{{ render_text("Use the button below to confirm within the next 12 hours.") }}
2019-11-20 21:58:25 +01:00
{{ render_button("Change email", link) }}
2020-02-12 06:51:31 +01:00
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
{{ raw_url(link) }}
2019-11-20 21:58:25 +01:00
{% endblock %}
2019-11-18 19:34:53 +01:00