Files
e-cosplay/templates/mails/customer/facture-payment.twig
Serreau Jovann aff07c97e1 feat(Customer): Ajoute la gestion des échéances de paiement client
Ajoute l'entité CustomerSplit et les services associés pour gérer
les échéances de paiement des clients (PDF, envoi mail, etc.).
2025-10-09 09:18:01 +02:00

31 lines
1.3 KiB
Twig
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends 'mails/base.twig' %}
{% block content %}
<mj-column>
<mj-text font-size="20px" font-weight="bold" color="#333333" padding-bottom="10px">
Votre nouvelle facture est disponible
</mj-text>
<mj-text font-size="16px" color="#555555" padding-bottom="20px">
Bonjour,
</mj-text>
<mj-text font-size="16px" color="#555555" padding-bottom="10px">
Nous vous informons que votre nouvelle <strong>facture</strong> n°<strong>{{ datas.paymentNotice.number }}</strong>) d'un montant de <strong>{{ datas.paymentNotice.amount | number_format(2, ',', ' ') }} € TTC</strong> est maintenant disponible.
</mj-text>
<mj-text font-size="16px" color="#555555" padding-bottom="20px" font-weight="bold">
Veuillez trouver la facture en pièce jointe de cet e-mail (format PDF).
</mj-text>
<mj-divider border-color="#cccccc" />
<mj-text font-size="14px" color="#555555" padding-top="20px">
Si vous avez des questions ou besoin d'assistance concernant cette facture, n'hésitez pas à nous contacter.
</mj-text>
<mj-text font-size="14px" color="#333333" padding-top="30px">
Cordialement,<br/>
Léquipe Support
</mj-text>
</mj-column>
{% endblock %}