{% extends "base.html" %} {% block title %}Mail log{% endblock %} {% block content %}
Every message the platform has dispatched, whether a copy reached the Sent folder, and its delivery result. Most-recent first.
| Timestamp (UTC) | Kind | Recipients | Subject | Status | Sent copy | By | Info |
|---|---|---|---|---|---|---|---|
| {{ 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. | |||||||