feat(notification): email event date changes

This commit is contained in:
2026-09-14 08:53:51 -03:00
parent 205d77bc0b
commit 756f4dad0a
10 changed files with 601 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<h1 style="margin: 0 0 20px;">Tu evento fue reprogramado</h1>
<p>Te informamos que la fecha de tu evento cambió.</p>
<p>
<strong>Fecha anterior:</strong> {{ $previousDate }}<br>
<strong>Nueva fecha:</strong> {{ $newDate }}
</p>
<p>Tus tickets continúan siendo válidos para la nueva fecha.</p>
<p><strong>Tickets afectados</strong></p>
<ul>
@foreach ($tickets as $ticket)
<li>{{ $ticket->name }} · #{{ $ticket->id }}</li>
@endforeach
</ul>
<p style="color: #64748b; font-size: 13px;">Compra #{{ $purchase->id }}</p>