2020-02-12 10:33:31 +01:00
{% extends "base.html" %}
2020-01-22 23:18:27 +01:00
2020-02-12 10:33:31 +01:00
{% block content %}
{{ render_text("Hi " + name) }}
2020-05-10 18:19:29 +02:00
{% call text() %}
2020-09-29 13:37:47 +02:00
As a measure to protect against < b > email spoofing< / b > , we have blocked an attempt to send an email from your alias < b > {{ alias.email }}< / b > using < b > {{ sender }}< / b > .
2020-05-10 18:19:29 +02:00
{% endcall %}
{% call text() %}
2020-09-29 13:03:15 +02:00
Please note that sending from this alias only works from alias's owning mailboxes, that are
{{ mailbox_emails|join(", ") }}
2020-05-10 18:19:29 +02:00
{% endcall %}
{% call text() %}
2020-09-29 11:00:50 +02:00
If {{ sender }} can indeed send emails from your alias, you can add it to the allow list:
2020-05-10 18:19:29 +02:00
{% endcall %}
2020-09-29 11:00:50 +02:00
{{ render_button("Allow " + sender, authorize_address_link) }}
2020-05-10 18:19:29 +02:00
{% call text() %}
2020-09-29 13:37:47 +02:00
Best, < br / >
2020-05-10 18:19:29 +02:00
SimpleLogin Team.
{% endcall %}
2020-09-29 11:00:50 +02:00
{{ raw_url(authorize_address_link) }}
2020-02-12 10:33:31 +01:00
{% endblock %}
2020-01-22 23:18:27 +01:00