Edit
@csrf @method('DELETE')

Email Information

Email Address
{{ $email->email }}
Type
{{ ucfirst($email->type) }}
First Name
{{ $email->first_name ?? '-' }}
Last Name
{{ $email->last_name ?? '-' }}
Organization
{{ $email->org_name ?? '-' }}
Profile URL
@if($email->profile_url) {{ $email->profile_url }} @else - @endif
Validity Status
@if($email->valid) Valid @else Invalid @endif
Validated At
{{ $email->validated_at ? $email->validated_at->format('M j, Y g:i A') : '-' }}
Created At
{{ $email->created_at->format('M j, Y g:i A') }}
Last Updated
{{ $email->updated_at->format('M j, Y g:i A') }}

Export History

@if($email->exportBatchItems->count() > 0)
@foreach($email->exportBatchItems as $item)

{{ $item->exportBatch->description ?? 'Export Batch #' . $item->export_batch_id }}

Exported {{ $item->exported_at ? $item->exported_at->diffForHumans() : 'Not yet exported' }}

@if($item->exportBatch) View Batch @endif
@endforeach
@else @endif

Unsubscribes

@if($email->unsubscribes->count() > 0)
@foreach($email->unsubscribes as $unsub)

{{ $unsub->segment->name ?? 'Unknown' }}

{{ $unsub->created_at->format('M j, Y') }}

@endforeach
@else
Not unsubscribed from any segments
@endif

Pauses

@if($email->pauses->count() > 0)
@foreach($email->pauses as $pause)

{{ $pause->segment->name ?? 'Unknown' }}

{{ $pause->created_at->format('M j, Y') }}

@endforeach
@else
Not paused from any segments
@endif
← Back to Emails