{% extends "base.html" %} {% block title %}Mail status — ApprovalFlow{% endblock %} {% block content %}
Every email the app tried to send, with its delivery result and whether a copy was saved to the Sent folder.
{% if not configured %}| When | To | Subject | Request | Delivery | Sent folder |
|---|---|---|---|---|---|
| {{ m.at }} | {{ m.recipients }} | {{ m.subject }}
{% if m.detail %} {{ m.detail }}{% endif %} |
{% if m.request_id %}#{{ m.request_id }}{% else %}—{% endif %} | {% if m.status == 'sent' %}sent {% elif m.status == 'error' %}error {% else %}dev{% endif %} |
{% if m.sent_copy.startswith('saved') %}{{ m.sent_copy }}
{% elif m.sent_copy.startswith('failed') %}copy failed {{ m.sent_copy }} {% else %}{{ m.sent_copy }}{% endif %} |
| No mail has been sent yet. | |||||