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-07-05 11:44:03 +02:00
|
|
|
We have recorded 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() %}
|
|
|
|
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-08-27 11:12:48 +02:00
|
|
|
This is to protect against "email spoofing", i.e. someone else sending emails from your mailbox. <br>
|
|
|
|
Indeed only you can send emails on behalf of your alias. <br>
|
|
|
|
If you think this is a wrong alert, please let us know by replying to this email.
|
2020-05-10 18:19:29 +02:00
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
Thanks, <br/>
|
|
|
|
SimpleLogin Team.
|
|
|
|
{% endcall %}
|
|
|
|
|
2020-02-12 10:33:31 +01:00
|
|
|
{% endblock %}
|
2020-01-22 23:18:27 +01:00
|
|
|
|
|
|
|
|