{% extends "ui/templates/base/layout.html" %} {% block content %}

Email Queue & Retry

Pending and failed emails that can be retried without disturbing the original business transaction.

Settings Logs
{% if flash %}
{{ flash }}
{% endif %}
{% for log in queue_rows %} {% else %} {% endfor %}
Queued Next Retry Attempts To Template Subject Status Error
{{ log.queued_at or log.created_at_utc }} {{ log.next_retry_at or 'Ready' }} {{ log.attempt_count or 0 }} / {{ log.max_attempts or 3 }} {{ log.recipient_email }} {{ log.template_code or '-' }} {{ log.subject }} {{ log.status }} {{ log.error_message or '' }}
No pending or failed retryable emails.
{% endblock %}