53 lines
1.4 KiB
PHP
53 lines
1.4 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 den vollständigen Betrag für deine Teilnahme erhalten und deine Anmeldung ist nun bestätigt.
|
|
</p>
|
|
|
|
|
|
<p>
|
|
@include('emails.subparts.faq')
|
|
</p><br /><br />
|
|
<p>
|
|
@include('emails.subparts.disclaimer')
|
|
</p>
|
|
</body>
|
|
</html>
|