59 lines
1.8 KiB
PHP
59 lines
1.8 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>
|
|
|
|
|
|
<p>
|
|
Wir haben festgestellt, dass du für die Anmeldung einen zu hohen Betrag entrichtet hast.<br />
|
|
Der Anmeldebetrag für deine Teilnahme beträgt {{ $amount }} Euro, die geleistete Zahlung beläuft sich auf {{$amount_paid}}.<br />
|
|
Somit ergibt sich eine Überzahlung zu deinen Gunsten in Höhe von <strong>{{ $overpaidAmount }}.</strong>
|
|
</p>
|
|
|
|
<p>
|
|
Bitte teile uns mit, ob du den Betrag spenden möchtest, oder ob du eine Rückzahlung wünscht.<br />
|
|
Insofern du eine Rückzahlung wünschst, teile uns bitte auch deine Bankverbindung mit.
|
|
</p>
|
|
|
|
<p>
|
|
@include('emails.subparts.faq')
|
|
</p><br /><br />
|
|
<p>
|
|
@include('emails.subparts.disclaimer')
|
|
</p>
|
|
</body>
|
|
</html>
|