Improve wording

This commit is contained in:
Son NK 2020-03-15 18:06:57 +01:00
parent b3977e5efd
commit eb3063a57f
5 changed files with 16 additions and 5 deletions

View File

@ -10,6 +10,16 @@
<div style="max-width: 60em; margin: auto"> <div style="max-width: 60em; margin: auto">
<h1 class="h3 mb-5"> Refused Emails </h1> <h1 class="h3 mb-5"> Refused Emails </h1>
<div class="alert alert-info">
This page shows all emails that have been <b>refused</b> (or bounced) by your mailbox. <br>
Usually this is because your mailbox thinks these emails are <b>spams</b>. <br>
- If a refused email is indeed spam, this means the alias is now in the hands of a spammer,
in this case you should <b>disable</b> this alias. <br>
- Otherwise, you should create a <b>filter</b> to avoid your email provider from blocking these emails. <br>
<a href="mailto:hi@simplelogin.io">Contact us↗</a> if you need any help.
</div>
{% if fels|length == 0 %} {% if fels|length == 0 %}
<div class="my-4 p-4 card"> <div class="my-4 p-4 card">
You don't have any refused email. You don't have any refused email.
@ -30,7 +40,8 @@
{% if refused_email.deleted %} {% if refused_email.deleted %}
Email deleted {{ refused_email.delete_at | dt }} Email deleted {{ refused_email.delete_at | dt }}
{% else %} {% else %}
<a href="{{ refused_email.get_url() }}" class="mt-4">Download →</a> <a href="{{ refused_email.get_url() }}" download
class="mt-4">Download →</a>
<div class="small-text">This will download a ".eml" file that you can open in your favorite email client</div> <div class="small-text">This will download a ".eml" file that you can open in your favorite email client</div>
{% endif %} {% endif %}

View File

@ -2,7 +2,7 @@
{% block content %} {% block content %}
{{ render_text("Hi " + name) }} {{ render_text("Hi " + name) }}
{{ render_text("There are at least 2 emails sent to your alias <b>" + alias + "</b>" + " (mailbox "+ mailbox_email + ") from <b>" + website_email + "</b> that have been <b>refused</b> (or bounced) by your email provider.") }} {{ render_text("There are at least 2 emails sent to your alias <b>" + alias + "</b> from <b>" + website_email + "</b> that have been <b>refused</b> (or bounced) by your mailbox " + mailbox_email + ".") }}
{{ render_text("This is usually due to the email being considered as <b>spam</b> by your email provider.") }} {{ render_text("This is usually due to the email being considered as <b>spam</b> by your email provider.") }}

View File

@ -1,6 +1,6 @@
Hi {{name}} Hi {{name}}
There are at least 2 emails sent to your alias {{alias}} (mailbox {{mailbox_email}}) from {{website_from}} that have been refused (or bounced) by your email provider. There are at least 2 emails sent to your alias {{alias}} from {{website_from}} that have been refused (or bounced) by your mailbox {{mailbox_email}}.
This is usually due to the email being considered as spam by your email provider. This is usually due to the email being considered as spam by your email provider.
You can view this email here: You can view this email here:

View File

@ -2,7 +2,7 @@
{% block content %} {% block content %}
{{ render_text("Hi " + name) }} {{ render_text("Hi " + name) }}
{{ render_text("An email sent to your alias <b>" + alias + "</b>" + " (mailbox "+ mailbox_email + ") from <b>" + website_email + "</b> was <b>refused</b> (or bounced) by your email provider.") }} {{ render_text("An email sent to your alias <b>" + alias + "</b> from <b>" + website_email + "</b> was <b>refused</b> (or bounced) by your mailbox " + mailbox_email + ".") }}
{{ render_text('This is usually due to the email being considered as <b>spam</b> by your email provider.') }} {{ render_text('This is usually due to the email being considered as <b>spam</b> by your email provider.') }}

View File

@ -1,6 +1,6 @@
Hi {{name}} Hi {{name}}
An email sent to your alias {{alias}} (mailbox {{mailbox_email}}) from {{website_from}} was refused (or bounced) by your email provider. An email sent to your alias {{alias}} from {{website_from}} was refused (or bounced) by your mailbox {{mailbox_email}}.
This is usually due to the email being considered as spam by your email provider. This is usually due to the email being considered as spam by your email provider.
You can view this email here: You can view this email here: