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

13 lines
476 B
HTML
Raw Normal View History

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