56 lines
2.3 KiB
Twig
56 lines
2.3 KiB
Twig
{% extends 'mails/base.twig' %}
|
|
|
|
{% block content %}
|
|
<mj-section padding-bottom="0px">
|
|
<mj-column>
|
|
<mj-text font-size="20px" font-weight="black" color="#2563eb" text-transform="uppercase" letter-spacing="1px">
|
|
Votre Facture
|
|
</mj-text>
|
|
<mj-text font-size="14px" color="#475569" padding-top="0px">
|
|
Référence : #{{ datas.contrat.numReservation }}
|
|
</mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
|
|
<mj-section>
|
|
<mj-column>
|
|
<mj-text>
|
|
Bonjour <strong>{{ datas.contrat.customer.surname }} {{ datas.contrat.customer.name }}</strong>,
|
|
</mj-text>
|
|
<mj-text line-height="1.6">
|
|
Nous vous remercions une nouvelle fois pour votre confiance. Votre prestation étant terminée, vous trouverez en pièce jointe de cet e-mail votre <strong>facture officielle</strong> au format PDF.
|
|
</mj-text>
|
|
|
|
<mj-divider border-width="1px" border-color="#e2e8f0" padding="20px 0px" />
|
|
|
|
<mj-text font-weight="bold" font-size="14px" color="#1e293b">
|
|
Résumé de votre réservation :
|
|
</mj-text>
|
|
<mj-text padding-bottom="5px">
|
|
• <strong>Événement :</strong> {{ datas.contrat.townEvent }}<br>
|
|
• <strong>Date :</strong> {{ datas.contrat.dateAt|date('d/m/Y') }}<br>
|
|
• <strong>Statut :</strong> Prestation terminée et réglée
|
|
</mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
|
|
<mj-section background-color="#f8fafc" border-radius="12px">
|
|
<mj-column>
|
|
<mj-text align="center" font-style="italic" color="#64748b" font-size="13px">
|
|
"Nous espérons que nos structures et nos services ont contribué à la réussite de votre événement !"
|
|
</mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
|
|
<mj-section padding-top="0px">
|
|
<mj-column>
|
|
<mj-text align="center" color="#94a3b8" font-size="12px">
|
|
Si vous avez des questions concernant cette facture, n'hésitez pas à nous contacter à contact@ludikevent.fr.
|
|
</mj-text>
|
|
<mj-text align="center" font-weight="bold" color="#1e293b" padding-top="20px">
|
|
Lilian - Ludikevent
|
|
</mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
{% endblock %}
|