Email Test Dashboard

Preview and send test emails for every template in resources/views/emails

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Current User (test sends go here)

Name:
{{ $user->name }}
Email:
{{ $user->email }}

All Email Templates

Grouped by category. If a template needs extra variables, the preview page will show the exact error so we can add mock data for it.

@foreach($categories as $categoryKey => $category)

{{ substr($category['label'], 0, 1) }} {{ $category['label'] }} ({{ count($category['views']) }})

@foreach($category['views'] as $v) @php $viewKey = str_replace('.', '__', $v['view']); @endphp
{{ $v['path'] }}
{{ $v['view'] }}
Preview
@csrf
@endforeach
@endforeach