91 lines
3.2 KiB
PHP
91 lines
3.2 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>
|
|
Deine Teilnahme ist <strong>noch nicht bestätigt,</strong> da dsies erst nach vollständigem Zahlungseingang der
|
|
Fall ist.
|
|
Bitte zahle 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>
|
|
|
|
@else
|
|
<p>
|
|
Deine Teilnahme wird entweder gefördert, sodass du nichts überweisen musst, oder die Beitragszahlung wird durch
|
|
deinen Stamm abgewickelt.<br/>
|
|
In diesem Fall wird sich dein Stamm bei dir melden, ob und in welcher Höhe ein Eigenanteil zu zahlen ist.
|
|
</p>
|
|
@endif
|
|
|
|
@switch ($efzStatus)
|
|
@case ('not_checked')
|
|
<p style="border-style: solid; border-width: 2px; border-color: #bdb053; padding: 10px; font-weight: bold; color: #501e1e; background-color: #f4e99e">
|
|
Dein erweitertes Führungszeugnis konnte nicht automatisch überprüft werden. Bitte kontaktiere die
|
|
Aktionsleitung, da deine Teilnahme nur mit gültigem eFZ möglich ist.
|
|
</p>
|
|
@break
|
|
|
|
@case ('checked_invalid')
|
|
<p style="border-style: solid; border-width: 2px; border-color: #ff0000; padding: 10px; font-weight: bold; color: #501e1e; background-color: #da7070">
|
|
Du hast noch kein erweitertes Führungszeugnis bereitgestellt, sodass deine Teilnahme nicht möglich ist.
|
|
Bitte reiche dein erweitertes Führungszeugnis bis zum {{$paymentFinalDate}} ein, da deine Teilnahme
|
|
andernfalls storniert wird.<br/><br/>
|
|
Solltest du diese Frist nicht einhalten können, setze dich bitte mit der Aktionsleitung in Verbindung.
|
|
</p>
|
|
@break
|
|
|
|
@default
|
|
|
|
@endswitch
|
|
|
|
|
|
<p>
|
|
@include('emails.subparts.faq')
|
|
</p><br /><br />
|
|
<p>
|
|
@include('emails.subparts.disclaimer')
|
|
</p>
|
|
</body>
|
|
</html>
|