2020-03-28 23:19:25 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2021-06-28 16:38:47 +02:00
|
|
|
|
|
|
|
{% call text() %}
|
2022-06-29 11:28:26 +02:00
|
|
|
<h1>{{ alias }} has been disabled successfully.</h1>
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% 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 %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% call text() %}
|
|
|
|
If this is a mistake, you can re-enable the alias on the dashboard.
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{{ render_button("Enable Alias", enable_alias_url) }}
|
|
|
|
{{ render_text('Thanks,
|
|
|
|
<br />
|
|
|
|
SimpleLogin Team.') }}
|
|
|
|
{{ raw_url(enable_alias_url) }}
|
2020-03-28 23:19:25 +01:00
|
|
|
{% endblock %}
|