app-MAIL-temp/app/dashboard/templates/dashboard/refused_email.html

64 lines
2.0 KiB
HTML
Raw Normal View History

2020-03-14 16:10:09 +01:00
{% extends 'default.html' %}
{% block title %}
Quarantine
2020-03-14 16:10:09 +01:00
{% endblock %}
{% set active_page = "setting" %}
{% block default_content %}
2020-04-05 19:59:48 +02:00
<div class="col">
<h1 class="h3 mb-5"> Quarantine </h1>
2020-03-14 16:10:09 +01:00
2020-03-15 18:06:57 +01:00
<div class="alert alert-info">
This page shows all emails that are potentially spams or malicious.
Usually these emails have been <b>refused</b> (or bounced) by your mailbox. <br>
- If an email is indeed spam, this means the alias is now in the hands of a spammer,
2020-03-15 18:06:57 +01:00
in this case you should <b>disable</b> this alias. <br>
2020-03-15 18:06:57 +01:00
- 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>
2020-03-30 21:46:52 +02:00
{% if email_logs|length == 0 %}
2020-03-14 16:10:09 +01:00
<div class="my-4 p-4 card">
You don't have any emails in Quarantine.
2020-03-14 16:10:09 +01:00
</div>
{% endif %}
2020-03-30 21:46:52 +02:00
{% for email_log in email_logs %}
{% set refused_email = email_log.refused_email %}
2020-08-15 16:56:16 +02:00
{% set contact = email_log.contact %}
{% set alias = contact.alias %}
2020-03-14 16:10:09 +01:00
2020-03-30 21:46:52 +02:00
<div class="card p-4 shadow-sm {% if email_log.id == highlight_id %} highlight-row {% endif %}">
2020-03-14 16:10:09 +01:00
<div class="small-text">
Sent {{ refused_email.created_at | dt }}
</div>
2020-08-15 16:56:16 +02:00
From: {{ contact.website_email }} <br>
<span>
To: {{ alias.email }}
<a href='{{ url_for("dashboard.index", highlight_alias_id=alias.id) }}'
class="btn btn-sm btn-outline-danger">Disable Alias</a>
</span>
{% if refused_email.deleted %}
<div>
Email deleted {{ refused_email.delete_at | dt }}
</div>
{% else %}
2020-03-15 18:06:57 +01:00
<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>
{% endif %}
2020-03-14 16:10:09 +01:00
</div>
{% endfor %}
</div>
{% endblock %}