34 lines
878 B
Twig
34 lines
878 B
Twig
{% extends 'email/layout.html.twig' %}
|
|
|
|
{% block body %}
|
|
<h1>Deine Buchung ist bestätigt</h1>
|
|
|
|
<p>
|
|
Hallo {{ booking.firstName }}, vielen Dank! Deine Buchung ist jetzt verbindlich bestätigt.
|
|
</p>
|
|
|
|
{% if accessLink %}
|
|
<p>
|
|
<a href="{{ accessLink }}" class="button">Buchung ansehen</a>
|
|
</p>
|
|
{% endif %}
|
|
|
|
<h2>Unterkunft</h2>
|
|
<table>
|
|
<tr>
|
|
<td><strong>Name</strong></td>
|
|
<td>{{ booking.accommodation.name }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>Anreise</strong></td>
|
|
<td>{{ booking.dateFrom|date('d.m.Y') }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>Abreise</strong></td>
|
|
<td>{{ booking.dateTo|date('d.m.Y') }}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p class="small">Bei Fragen antworte einfach auf diese E-Mail.</p>
|
|
{% endblock %}
|