app-MAIL-temp/templates/emails/transactional/bounce/automatic-disable-alias.html

26 lines
634 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
2020-12-16 18:48:20 +01:00
{% call text() %}
<h1>
{{ alias.email }} is disabled
</h1>
{% endcall %}
2020-03-15 12:25:01 +01:00
2020-12-16 18:48:20 +01:00
{% call text() %}
There are several emails sent to your alias {{alias.email}} that have been bounced
by your mailbox {{mailbox_email}}.
{% endcall %}
{{ render_button("View the refused email", refused_email_url) }}
2020-12-16 18:48:20 +01:00
{% call text() %}
As security measure, we have disabled the alias.
{% endcall %}
{{ render_text('Please let us know if you have any question.') }}
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
2020-03-15 18:39:59 +01:00
{{ raw_url(refused_email_url) }}
{% endblock %}