'admin/mail-log',
'label' => t('Total emails'),
'count' => (string) $mailLogTotalCount,
'icon' => 'bi bi-envelope-fill',
'iconBg' => '#e9f0ff',
'iconColor' => '#264db3',
]);
?>
'admin/mail-log?status=sent',
'label' => t('Sent emails'),
'count' => (string) $mailLogSentCount,
'icon' => 'bi bi-envelope-check-fill',
'iconBg' => '#d9f2e6',
'iconColor' => '#1f6a3a',
]);
?>
'admin/mail-log?status=failed',
'label' => t('Failed emails'),
'count' => (string) $mailLogFailedCount,
'icon' => 'bi bi-envelope-x-fill',
'iconBg' => '#ffe9e9',
'iconColor' => '#a32e2e',
]);
?>
'admin/mail-log',
'label' => t('Queued emails'),
'count' => (string) $mailLogQueuedCount,
'icon' => 'bi bi-envelope-paper-fill',
'iconBg' => '#fff2d9',
'iconColor' => '#9a5a00',
]);
?>
'admin/mail-log?created_from=' . urlencode($date24hAgo ?? '') . '&created_to=' . urlencode($dateToday ?? ''),
'label' => t('Total (24h)'),
'count' => (string) $mailLogTotal24hCount,
'icon' => 'bi bi-envelope-fill',
'iconBg' => '#e9f0ff',
'iconColor' => '#264db3',
]);
?>
'admin/mail-log?status=sent&created_from=' . urlencode($date24hAgo ?? '') . '&created_to=' . urlencode($dateToday ?? ''),
'label' => t('Sent (24h)'),
'count' => (string) $mailLogSent24hCount,
'icon' => 'bi bi-envelope-check-fill',
'iconBg' => '#d9f2e6',
'iconColor' => '#1f6a3a',
]);
?>
'admin/mail-log?status=failed&created_from=' . urlencode($date24hAgo ?? '') . '&created_to=' . urlencode($dateToday ?? ''),
'label' => t('Failed (24h)'),
'count' => (string) $mailLogFailed24hCount,
'icon' => 'bi bi-envelope-x-fill',
'iconBg' => '#ffe9e9',
'iconColor' => '#a32e2e',
]);
?>
'admin/mail-log?status=queued&created_from=' . urlencode($date24hAgo ?? '') . '&created_to=' . urlencode($dateToday ?? ''),
'label' => t('Queued (24h)'),
'count' => (string) $mailLogQueued24hCount,
'icon' => 'bi bi-envelope-paper-fill',
'iconBg' => '#fff2d9',
'iconColor' => '#9a5a00',
]);
?>