Files
mareike/resources/views/emails/participantPayments/missing_amount.blade.php
2026-08-05 10:55:06 +02:00

59 lines
1.7 KiB
PHP

<!DOCTYPE html>
<html>
<body>
<h1>Hallo {{$name}}!</h1>
<p>
Vielen Dank für deine Anmeldung zur Veranstaltung "{{$eventTitle}}".<br/>
Wir haben folgende Daten zu deiner Teilnahme erfasst:
</p>
<table cellpadding="0" cellspacing="0" border="0"
style="width: 100%; max-width: 640px; border-collapse: collapse; font-family: Arial, sans-serif; font-size: 14px; color: #1f2937;">
<tr>
<td style="padding: 8px 12px; width: 180px; font-weight: 600; color: #4b5563; border-bottom: 1px solid #e5e7eb;">
Ankunft
</td>
<td style="padding: 8px 12px; border-bottom: 1px solid #e5e7eb;">
{{ $arrival }}
</td>
</tr>
<tr>
<td style="padding: 8px 12px; font-weight: 600; color: #4b5563; border-bottom: 1px solid #e5e7eb;">
Abreise
</td>
<td style="padding: 8px 12px; border-bottom: 1px solid #e5e7eb;">
{{ $departure }}
</td>
</tr>
<tr>
<td style="padding: 8px 12px; font-weight: 600; color: #4b5563;">
Teilnahmegruppe
</td>
<td style="padding: 8px 12px;">
{{ $participationType }}
</td>
</tr>
</table>
@if ($paymentSummary['hasPaymentInformation'])
<p>
Wahrscheinlich hast du vergessen, deinen Teilnahmebeitrag zu zahlen, sodass deine Anmeldung leider
<strong>noch nicht bestätigt</strong> werden konnte. Bitte hole die Zahlung anhand der folgenden
Zahlungsinformationen nach:
</p>
<p>
@include('emails.subparts.payment')
</p>
@endif
<p>
@include('emails.subparts.faq')
</p><br /><br />
<p>
@include('emails.subparts.disclaimer')
</p>
</body>
</html>