62 lines
1.9 KiB
PHP
62 lines
1.9 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 ($paymentRequired)
|
|
<p>
|
|
Wahrscheinlich hast du vergessen, deinen Teilnahmebeitrag zu überweisen, sodass deine Anmeldung leider <strong>noch nicht bestätigt,</strong> werden konnte.
|
|
|
|
Um deine Anmeldung zu bestätigen, zahle bitte den Betrag in Höhe von <strong>{{$amount}}</strong> bis zum <strong>{{$paymentFinalDate}},</strong>
|
|
da andernfalls die Stornierung deiner Anmeldung erfolgen kann.
|
|
|
|
Um deine Anmeldung zu vervollständigen, überweise den Betrag bitte zugunsten folgender Bankverbindung:
|
|
</p>
|
|
|
|
<p>
|
|
@include('emails.subparts.payment')
|
|
</p>
|
|
@endif
|
|
|
|
<p>
|
|
@include('emails.subparts.faq')
|
|
</p><br /><br />
|
|
<p>
|
|
@include('emails.subparts.disclaimer')
|
|
</p>
|
|
</body>
|
|
</html>
|