2020-02-22 14:57:19 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-03-30 21:45:43 +02:00
|
|
|
|
2020-12-16 18:48:20 +01:00
|
|
|
{% call text() %}
|
2022-06-29 11:28:26 +02:00
|
|
|
<h1>
|
|
|
|
An email sent to your alias {{ alias.email }} from {{ website_email }} was <b>bounced</b> by your mailbox
|
|
|
|
{{ mailbox_email }}
|
|
|
|
</h1>
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% call text() %}
|
|
|
|
This is usually because your mailbox service thinks the email is <b>spam</b>.
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{{ render_button("View the bounced email", refused_email_url) }}
|
|
|
|
{{ render_text('The email is automatically deleted in 7 days.') }}
|
|
|
|
{% call text() %}
|
|
|
|
Please consider the following options:
|
|
|
|
<br />
|
|
|
|
<ol>
|
|
|
|
<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 />
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
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>
|
2023-05-03 19:56:22 +02:00
|
|
|
if they send too many spam emails.
|
2022-06-29 11:28:26 +02:00
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
<br />
|
|
|
|
Please note that the alias can be automatically disabled if too many emails sent to it are bounced.
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{{ render_text('Thanks,
|
|
|
|
<br />
|
|
|
|
SimpleLogin Team.') }}
|
2020-02-22 14:57:19 +01:00
|
|
|
{% endblock %}
|