{% extends "@notification/emails/en/layout.html.twig" %}

{% block body %}
    {% include('@notification/emails/en/parts/greetings.html.twig') %}

    {% if notification.postDepartureContent %}
        {{ notification.postDepartureContent|raw }}
    {% else %}
        <p>Thank you for staying with us. We hope you had a wonderful time and look forward to welcoming you again.</p>
    {% endif %}

    {% if notification.signature %}
        {{ notification.signature|raw }}
    {% endif %}
{% endblock %}
