app-MAIL-temp/templates/emails/transactional/verify-mailbox.html

21 lines
697 B
HTML
Raw Normal View History

2020-02-10 17:17:05 +01:00
{% extends "base.html" %}
{% block content %}
2021-01-25 21:25:15 +01:00
{{ render_text("Hi") }}
{{ render_text("You have added <b>"+ mailbox.email +"</b> as an additional mailbox.") }}
{% if mailbox.verification_code is not none -%}
{{ render_text("To confirm, please write this code to verify") }}
{{ render_text("<strong>{}</strong>".format(mailbox.verification_code.zfill(6))) }}
{% else -%}
{{ render_text("To confirm, please click on the button below.") }}
{{ render_button("Confirm mailbox", link) }}
{% endif %}
{{ render_text("This email will only be valid for the next 15 minutes.") }}
{{ render_text('Thanks,
<br />
SimpleLogin Team.') }}
2020-02-12 10:37:47 +01:00
{{ raw_url(link) }}
2020-02-10 17:17:05 +01:00
{% endblock %}