2020-02-22 21:57:19 +08:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-12-17 01:48:20 +08:00
|
|
|
{% call text() %}
|
|
|
|
<h1>
|
|
|
|
An email sent to your alias {{ alias.email }} from {{ website_email }} was <b>bounced</b> by your mailbox
|
|
|
|
{{ mailbox_email }}
|
|
|
|
</h1>
|
|
|
|
{% endcall %}
|
2020-02-22 21:57:19 +08:00
|
|
|
|
2020-12-17 01:48:20 +08:00
|
|
|
{% call text() %}
|
2021-10-28 17:43:44 +08:00
|
|
|
This is usually because your mailbox service thinks the email is <b>spam</b>.
|
2020-12-17 01:48:20 +08:00
|
|
|
{% endcall %}
|
2020-03-14 23:34:23 +08:00
|
|
|
|
2020-12-17 01:48:20 +08:00
|
|
|
{{ render_button("View the bounced email", refused_email_url) }}
|
2020-02-22 21:57:19 +08:00
|
|
|
|
2020-03-31 03:45:43 +08:00
|
|
|
{{ render_text('The email is automatically deleted in 7 days.') }}
|
|
|
|
|
2020-12-17 01:48:20 +08:00
|
|
|
{% call text() %}
|
|
|
|
Please consider the following options: <br>
|
2020-02-22 21:57:19 +08:00
|
|
|
|
2020-12-17 01:48:20 +08:00
|
|
|
<ol>
|
2021-10-28 17:43:44 +08:00
|
|
|
<li>If the email is not spam, you can create a
|
|
|
|
<a href="https://simplelogin.io/docs/getting-started/troubleshooting/">filter</a>
|
|
|
|
to explicitly allow all emails from SimpleLogin. <br>
|
2020-12-17 01:48:20 +08:00
|
|
|
</li>
|
2020-02-22 21:57:19 +08:00
|
|
|
|
2020-12-17 01:48:20 +08:00
|
|
|
<li>
|
2021-10-28 17:43:44 +08:00
|
|
|
If this email is indeed spam, it means your alias {{ alias.email }} is now in the hands of a spammer.
|
|
|
|
You can either <a href="{{ disable_alias_link }}">disable the alias</a>
|
|
|
|
or <a href="{{ block_sender_link }}">block the sender</a> if they send too many spams.
|
2020-12-17 01:48:20 +08:00
|
|
|
</li>
|
|
|
|
</ol>
|
2020-02-22 21:57:19 +08:00
|
|
|
|
2021-10-28 17:43:44 +08:00
|
|
|
<br>
|
|
|
|
Please note that the alias can be automatically disabled if too many emails sent to it are bounced.
|
|
|
|
{% endcall %}
|
2020-02-22 21:57:19 +08:00
|
|
|
|
|
|
|
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
|
|
|
|
{% endblock %}
|