Email

Email

Queued and sent emails across the workspace.

Compose
@if (config('mail.default') === 'log')
Mail driver: log — emails write to storage/logs/laravel.log instead of going out. Set MAIL_MAILER in .env to switch.
@endif @if ($emails->isEmpty())

No emails sent yet

Compose your first message.

Compose
@else To Subject Status @foreach ($emails as $email) @if ($email->contact)
{{ $email->contact->name }}
{{ $email->to_email }}
@else {{ $email->to_email }} @endif
{{ $email->subject }}
{{ \Illuminate\Support\Str::limit(strip_tags($email->body_text ?? $email->body_html ?? ''), 80) }}
{{ $email->status }}
@endforeach
{{ $emails->links() }}
@endif