app-MAIL-temp/templates/emails/transactional/unsubscribe-disable-alias.html
Carlos Quintana cb7868bdca
Add djlint (#1122)
* Add DJlint configuration

* Initial reformat for djlint

* Add template linting to CI

* Add explanation for HTML template checks in CONTRIBUTING.md
2022-06-29 11:28:26 +02:00

22 lines
627 B
HTML

{% extends "base.html" %}
{% block content %}
{% 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 %}
{{ render_button("Enable Alias", enable_alias_url) }}
{{ render_text('Thanks,
<br />
SimpleLogin Team.') }}
{{ raw_url(enable_alias_url) }}
{% endblock %}