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