Bulk sends

Every campaign you've sent โ€” newest first.

@if ($sends->isEmpty())

No bulk sends yet

Select contacts on the contacts list, then click Send message.

Go to contacts โ†’
@else When Channel Subject / preview Sent Failed Status @foreach ($sends as $s)
{{ $s->created_at->format('M j, Y') }}
{{ $s->created_at->format('g:i a') }} ยท by {{ $s->user?->name ?: 'โ€”' }}
{{ strtoupper($s->channel) }} @if ($s->subject)
{{ $s->subject }}
@endif
{{ \Illuminate\Support\Str::limit($s->body, 80) }}
{{ $s->sent_count }} / {{ $s->total_count }} @if ($s->failed_count > 0) {{ $s->failed_count }} @else 0 @endif @php $st = $s->status(); @endphp {{ $st }}
@endforeach
{{ $sends->links() }}
@endif