2020-08-25 12:51:05 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
{% call text() %}
|
2024-08-28 13:07:34 +02:00
|
|
|
<h1>
|
|
|
|
An email was sent to your alias <b>{{ alias.email }}</b> from its own mailbox
|
|
|
|
<b>{{ from_addr }}</b>.
|
|
|
|
</h1>
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2024-08-28 13:07:34 +02:00
|
|
|
{% call text() %}
|
|
|
|
SimpleLogin doesn't send this email <b>back</b> to your mailbox as it would be refused or hidden anyway by your email service.
|
|
|
|
<br />
|
|
|
|
So no worries, there's nothing you need to do :).
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2024-08-28 13:07:34 +02:00
|
|
|
{{ render_button("View the email", refused_email_url) }}
|
|
|
|
{% call text() %}
|
|
|
|
The email is automatically deleted in 7 days.
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2024-08-28 13:07:34 +02:00
|
|
|
{{ render_text('Thanks,
|
|
|
|
<br />
|
|
|
|
SimpleLogin Team.') }}
|
2020-08-25 12:51:05 +02:00
|
|
|
{% endblock %}
|