app-MAIL-temp/templates/emails/transactional/verify-mailbox.txt.jinja2

20 lines
400 B
Plaintext
Raw Normal View History

2022-02-16 18:52:35 +01:00
{% extends "base.txt.jinja2" %}
{% block content %}
2021-01-25 21:25:15 +01:00
Hi
2020-02-10 17:17:05 +01:00
You have added {{mailbox.email}} as an additional mailbox.
2020-02-10 17:17:05 +01:00
{% if mailbox.verification_code is not none -%}
To confirm, please write this code to verify:
{{ mailbox.verification_code.zfill(6) }}
{% else -%}
2020-02-10 17:17:05 +01:00
To confirm, please click on this link:
{{link}}
{% endif %}
This email will only be valid during the next 15 minutes.
2022-02-16 18:52:35 +01:00
{% endblock %}