{% extends "base.html" %} {% block title %}Mail log{% endblock %} {% block content %}

Mail log

Every message the platform has dispatched, whether a copy reached the Sent folder, and its delivery result. Most-recent first.

⬇ Export CSV
{{ log_email_form.csrf_token }} {{ log_email_form.log_recipient(placeholder="destination@example.com") }} {{ log_email_form.submit(class_="btn btn-primary") }}
{% for m in pagination.items %} {% else %} {% endfor %}
Timestamp (UTC)KindRecipientsSubject StatusSent copyByInfo
{{ m.timestamp.strftime('%Y-%m-%d %H:%M:%S') }} {{ m.kind }} {{ m.recipients or '—' }} {{ m.subject or '—' }} {% if m.status == 'sent' %} sent {% else %} failed {% endif %} {% if m.sent_copy == 'saved' %} saved {% elif m.sent_copy == 'failed' %} failed {% elif m.sent_copy == 'disabled' %} disabled {% else %} {% endif %} {{ m.triggered_by or 'system' }} {{ m.info or '' }}
No mail has been sent yet.
{% if pagination.pages > 1 %} {% endif %} {% endblock %}