2020-02-12 17:33:31 +08:00
|
|
|
{% extends "base.html" %}
|
2020-01-23 06:18:27 +08:00
|
|
|
|
2020-02-12 17:33:31 +08:00
|
|
|
{% block content %}
|
|
|
|
{{ render_text("Hi " + name) }}
|
2020-05-11 00:19:29 +08:00
|
|
|
|
|
|
|
{% call text() %}
|
2020-07-05 17:44:03 +08:00
|
|
|
We have recorded an attempt to send an email from your alias <b>{{ alias.email }}</b> using <b>{{ sender }}</b>.
|
2020-05-11 00:19:29 +08:00
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
Please note that sending from this alias only works from one of these mailboxes: <br>
|
|
|
|
{% for mailbox in alias.mailboxes %}
|
|
|
|
- {{ mailbox.email }} <br>
|
|
|
|
{% endfor %}
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
2020-09-29 17:00:50 +08:00
|
|
|
This is to protect against <b>email spoofing</b>, i.e. someone else sending emails from your mailbox. <br>
|
|
|
|
If {{ sender }} can indeed send emails from your alias, you can add it to the allow list:
|
2020-05-11 00:19:29 +08:00
|
|
|
{% endcall %}
|
|
|
|
|
2020-09-29 17:00:50 +08:00
|
|
|
{{ render_button("Allow " + sender, authorize_address_link) }}
|
|
|
|
|
2020-05-11 00:19:29 +08:00
|
|
|
{% call text() %}
|
|
|
|
Thanks, <br/>
|
|
|
|
SimpleLogin Team.
|
|
|
|
{% endcall %}
|
|
|
|
|
2020-09-29 17:00:50 +08:00
|
|
|
{{ raw_url(authorize_address_link) }}
|
|
|
|
|
2020-02-12 17:33:31 +08:00
|
|
|
{% endblock %}
|
2020-01-23 06:18:27 +08:00
|
|
|
|
|
|
|
|