contentdb/app/templates/emails/verify_unsubscribe.html

25 lines
657 B
HTML
Raw Normal View History

2020-12-05 21:36:09 +01:00
{% extends "emails/base.html" %}
{% block content %}
2022-01-08 00:27:00 +01:00
<h2 style="margin-top: 0;">
{{ _("Hello!") }}
</h2>
2020-12-05 21:36:09 +01:00
<p>
2022-01-08 00:27:00 +01:00
{{ _("We're sorry to see you go. You just need to do one more thing before your email is blacklisted.") }}
2020-12-05 21:36:09 +01:00
</p>
<a class="btn" href="{{ abs_url_for('users.unsubscribe', token=sub.token) }}">
2022-01-08 00:27:00 +01:00
{{ _("Unsubscribe") }}
2020-12-05 21:36:09 +01:00
</a>
<p style="font-size: 80%;">
2022-01-08 00:27:00 +01:00
{{ _("Or paste this into your browser:") }} <code>{{ abs_url_for('users.unsubscribe', token=sub.token) }}</code>
2020-12-05 21:36:09 +01:00
<p>
{% endblock %}
{% block footer %}
2022-01-08 00:27:00 +01:00
{{ _("You are receiving this email because someone (hopefully you) entered your email address in the unsubscribe form.") }}
2020-12-05 21:36:09 +01:00
{% endblock %}