Added email blade

This commit is contained in:
snipe
2026-05-30 12:25:36 +01:00
parent b0a6cdc29f
commit f133a67550
@@ -0,0 +1,23 @@
@component('mail::message')
# {{ $dryRun ? '[Dry Run] ' : '' }}Bulk Check-in/Delete Report
**Run by:** {{ $admin->first_name }} {{ $admin->last_name }} ({{ $admin->username }})<br>
**Date:** {{ $runAt->format('Y-m-d H:i:s') }}<br>
**Mode:** {{ $dryRun ? 'Dry run (no changes made)' : 'Live run' }}<br>
**Delete type:** {{ ucfirst($deleteType) }}<br>
**Companies:** {{ implode(', ', $companyNames) }}<br>
**Item types:** {{ implode(', ', $selectedTypes) }}
---
@if(count($reportLines) > 0)
## Actions {{ $dryRun ? 'That Would Have Been ' : '' }}Taken
@foreach($reportLines as $line)
- {{ $line }}
@endforeach
@else
No actions were {{ $dryRun ? 'identified' : 'taken' }}.
@endif
@endcomponent