2020-03-28 23:19:25 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2021-06-28 16:38:47 +02:00
|
|
|
{% call text() %}
|
|
|
|
<h1>
|
|
|
|
{{ alias }} has been disabled successfully.
|
|
|
|
</h1>
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
The alias has been disabled thanks to the "One-click unsubscribe” provided by your mailbox service. <br>
|
|
|
|
When you click on this button on a forwarded email, the alias will be disabled automatically.
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
If this is a mistake, you can re-enable the alias on the dashboard.
|
|
|
|
{% endcall %}
|
|
|
|
|
2020-03-28 23:19:25 +01:00
|
|
|
{{ render_button("Enable Alias", enable_alias_url) }}
|
2021-06-28 16:38:47 +02:00
|
|
|
|
2020-03-28 23:19:25 +01:00
|
|
|
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
|
2021-06-28 16:38:47 +02:00
|
|
|
|
2020-03-28 23:19:25 +01:00
|
|
|
{{ raw_url(enable_alias_url) }}
|
|
|
|
{% endblock %}
|
|
|
|
|