{% extends "admin/base.html" %} {% from 'shared/macros/pagination.html' import pagination %} {% from 'shared/macros/headers.html' import page_header_flex, refresh_button %} {% from 'shared/macros/alerts.html' import loading_state, error_state %} {% from 'shared/macros/tables.html' import table_wrapper %} {% from 'shared/macros/modals.html' import modal_simple %} {% block title %}Email Logs{% endblock %} {% block alpine_data %}emailLogsPage(){% endblock %} {% block content %} {% call page_header_flex(title='Email Logs', subtitle='Audit all emails sent through the platform') %}
{{ refresh_button(loading_var='loading', onclick='refresh()', variant='secondary') }}
{% endcall %} {{ loading_state('Loading email logs...') }} {{ error_state('Error loading email logs') }}

Sent

Failed

Pending

Delivered

{% call table_wrapper() %}
Recipient Subject Template Status Date Actions

No email logs found

{% endcall %}
{{ pagination() }}
{% call modal_simple(show_var='showDetail', title='Email Detail', size='xl') %}
From:

To:

Subject:

Status:
Template:

Provider:

Store ID:

Related:

Status Timeline

Created:
Sent:
Delivered:
Opened:
Clicked:

Error

Email Content


        

Content may have been purged per retention policy (90 days).

{% endcall %} {% endblock %} {% block extra_scripts %} {% endblock %}