{{ number_format($stats['delivered']) }} emails were successfully delivered{{ $stats['bounced'] > 0 ? ', with ' . $stats['bounce_rate'] . '% bounced' : '' }}.
{{ __('Total recipients') }}
{{ __('Delivered') }}
{{ __('Rejected') }}
{{ __('Bounced') }}
Your email was delivered to {{ number_format($stats['delivered']) }} recipients, opened by {{ $stats['open_rate'] }}% and clicked by {{ $stats['click_rate'] }}%.
{{ __('Opened') }}
{{ __('Clicked') }}
{{ __('Unsubscribed') }}
{{ __('Spam reports') }}
{{ __('An overview of this campaign\'s details, message and settings.') }}
{{ __('From') }}
{{ $campaign->emailAccount?->display_name ?? $campaign->emailAccount?->email ?? __('N/A') }}
{{ __('"Reply to" email') }}
{{ $campaign->emailAccount?->email ?? __('N/A') }}
{{ __('Send time') }}
{{ $campaign->sent_at?->format('M j, Y \a\t g:i A') ?? ($campaign->scheduled_at?->format('M j, Y \a\t g:i A') ?? __('Not sent yet')) }}
{{ __('Campaign type') }}
{{ ucfirst(str_replace('_', ' ', $campaign->type ?? 'regular')) }}
{{ __('Subject') }}
{{ $campaign->subject }}
{{ __('Preview text') }}
{{ $campaign->preview_text }}
{{ __('Audience') }}
{{ ucfirst($campaign->audience_type ?? 'all') }} — {{ number_format($stats['recipients']) }} {{ __('recipients') }}
{{ __('Created by') }}
{{ $campaign->createdBy?->name ?? __('Unknown') }}
| {{ __('URL') }} | {{ __('Clicks') }} |
|---|---|
|
{{ $link->original_url }} |
{{ number_format($link->clicks_count) }} |
| {{ __('Contact') }} | {{ __('Email') }} | {{ __('Status') }} | |||
|---|---|---|---|---|---|
|
{{ $recipient->contact?->full_name ?? __('Unknown') }} |
{{ $recipient->email ?? $recipient->contact?->email ?? '--' }} |
@php $statusColors = [ 'pending' => 'bg-surface text-muted', 'sent' => 'bg-info/15 text-info', 'delivered' => 'bg-success/15 text-success', 'opened' => 'bg-emerald-100 text-emerald-700', 'clicked' => 'bg-teal-100 text-teal-700', 'bounced' => 'bg-danger/15 text-danger', 'unsubscribed' => 'bg-orange-100 text-orange-700', 'failed' => 'bg-danger/15 text-danger', ]; @endphp {{ ucfirst($recipient->status) }} | |||
| {{ __('No recipients found.') }} | |||||
{{ number_format($stats['opened']) }} recipients opened your email ({{ $stats['open_rate'] }}% open rate)
| {{ __('Contact') }} | {{ __('Email') }} | {{ __('Opened at') }} |
|---|---|---|
| {{ $recipient->contact?->full_name ?? __('Unknown') }} | {{ $recipient->email ?? $recipient->contact?->email ?? '--' }} | {{ $recipient->opened_at?->format('M j, Y \a\t g:i A') ?? '--' }} |
| {{ __('No opens recorded yet.') }} | ||
{{ number_format($stats['clicked']) }} recipients clicked a link ({{ $stats['click_rate'] }}% click rate)
| {{ __('URL') }} | {{ __('Clicks') }} |
|---|---|
{{ $link->original_url }} |
{{ number_format($link->clicks_count) }} |
| {{ __('No link clicks yet.') }} | |
| {{ __('Contact') }} | {{ __('Email') }} | {{ __('Clicked at') }} |
|---|---|---|
| {{ $recipient->contact?->full_name ?? __('Unknown') }} | {{ $recipient->email ?? $recipient->contact?->email ?? '--' }} | {{ $recipient->clicked_at?->format('M j, Y \a\t g:i A') ?? '--' }} |
| {{ __('No clicks recorded yet.') }} | ||
{{ number_format($stats['bounced'] + ($stats['failed'] ?? 0)) }} emails bounced or failed to deliver
| {{ __('Contact') }} | {{ __('Email') }} | {{ __('Status') }} | |
|---|---|---|---|
| {{ $recipient->contact?->full_name ?? __('Unknown') }} | {{ $recipient->email ?? $recipient->contact?->email ?? '--' }} | {{ ucfirst($recipient->status) }} | |
| {{ __('No bounces or failures.') }} | |||