Ajoute l'entité CustomerSplit et les services associés pour gérer les échéances de paiement des clients (PDF, envoi mail, etc.).
31 lines
1.3 KiB
Twig
31 lines
1.3 KiB
Twig
{% 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 %}
|