Files
ludikevent_crm/templates/mails/sign/signed_notification.twig
Serreau Jovann cd45a37d73 ```
 feat(Product.php): Ajoute la relation avec ProductReserve.

 feat(DevisSubscriber.php): Crée un subscriber pour l'envoi de devis.

 feat(Devis.php): Ajoute la relation avec ProductReserve.

 feat: Crée le template de mail pour la notification de signature.

 feat(DevisSend.php): Crée l'événement DevisSend.

 feat(Customer.php): Ajoute la relation avec ProductReserve.

🐛 fix(SignatureController.php): Corrige la gestion de la signature complétée.

 feat(DevisController.php): Ajoute la relance de signature et pagination.

 feat: Crée le template de mail pour l'envoi du devis à signer.

 feat: Crée le template de mail pour la confirmation de signature.

 feat(Client.php): Gère la création et le suivi de la signature DocuSeal.

 feat(DevisPdfService.php): Intègre les champs Docuseal.

 feat(list.twig): Affiche la liste des devis avec actions et statuts.

 feat: Crée la page de succès de signature.

 feat(StripeExtension.php): Ajoute le filtre totalQuoto pour calculer le total HT.
```
2026-01-19 19:40:27 +01:00

46 lines
2.4 KiB
Twig

{% extends 'mails/base.twig' %}
{% block content %}
<mj-section background-color="#ffffff" padding-top="20px">
<mj-column width="100%">
<mj-text font-size="14px" color="#475569" font-family="Arial, sans-serif" line-height="1.6">
Bonne nouvelle ! Le client <strong>{{ datas.devis.customer.name }} {{ datas.devis.customer.surname }}</strong> vient de signer numériquement son devis.
</mj-text>
</mj-column>
</mj-section>
<mj-section background-color="#ffffff" padding="0px">
<mj-column width="90%" background-color="#f8fafc" border="1px solid #e2e8f0" border-radius="8px">
<mj-table font-family="Arial, sans-serif" font-size="14px" padding="15px">
<tr>
<td style="padding: 5px 0; color: #64748b;">N° Devis :</td>
<td style="padding: 5px 0; text-align: right; font-weight: bold;">{{ datas.devis.num }}</td>
</tr>
<tr>
<td style="padding: 5px 0; color: #64748b;">Client :</td>
<td style="padding: 5px 0; text-align: right;">{{ datas.devis.customer.name }}</td>
</tr>
<tr>
<td style="padding: 5px 0; color: #64748b;">Montant HT :</td>
<td style="padding: 5px 0; text-align: right; font-weight: bold; color: #2563eb;">{{ datas.devis.totalHt|number_format(2, ',', ' ') }} €</td>
</tr>
<tr>
<td style="padding: 5px 0; color: #64748b;">Date de signature :</td>
<td style="padding: 5px 0; text-align: right;">{{ "now"|date("d/m/Y à H:i") }}</td>
</tr>
</mj-table>
</mj-column>
</mj-section>
<mj-section background-color="#ffffff">
<mj-column width="100%">
<mj-text font-size="13px" color="#ef4444" font-family="Arial, sans-serif" font-style="italic" align="center">
Rappel : Le client a reçu l'instruction de régler l'acompte sous 3 jours.
</mj-text>
<mj-button background-color="#1e293b" color="white" font-size="14px" font-weight="bold" href="https://reservation.ludikevent.fr/crm/devis" border-radius="6px" padding-top="20px">
VOIR LE DEVIS SUR LE CRM
</mj-button>
</mj-column>
</mj-section>
{% endblock %}