{% extends 'admin/layout.html.twig' %} {% block page_title %}Email Logs{% endblock %} {% block content %}
Monitor all outgoing emails from the system
{{ todayStats.date ? todayStats.date|date('l, F j, Y') : 'Today' }}
Quota Exceeded: You've reached your daily email limit. Additional emails may not be delivered.
Warning: You're approaching your daily quota limit. Monitor email activity closely.
Showing {{ selectedDateLogs|length }} emails sent on {{ selectedDate|date('F j, Y') }}
| Time | Recipient | Subject | Type | Status |
|---|---|---|---|---|
| {{ log.sentAt|date('g:i A') }} |
{% if log.recipientUser %}
{{ log.recipientUser.fullName }}
{{ log.recipientEmail }}
{% else %}
{{ log.recipientEmail }}
{% endif %}
|
{{ log.subject }} | {{ log.emailType|replace({'_': ' '})|title }} | {% if log.status == 'sent' %} Sent {% else %} Failed {% endif %} |
No emails were sent on this date.