Ajoute une page de confirmation après soumission du formulaire et envoie des emails de confirmation au candidat et à l'équipe.
41 lines
2.0 KiB
Twig
41 lines
2.0 KiB
Twig
{% extends 'mails/base.twig' %}
|
|
|
|
{% block subject %}
|
|
Confirmation de réception - Ta candidature chez E-Cosplay
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<mj-section background-color="#ffffff" padding-top="20px">
|
|
<mj-column width="100%">
|
|
<mj-text font-size="20px" color="#2c3e50" font-weight="bold" align="center">
|
|
Merci {{ join.name }} !
|
|
</mj-text>
|
|
<mj-text font-size="16px" color="#444444" line-height="24px" align="center">
|
|
Nous avons bien reçu ta candidature pour rejoindre l'association <strong>E-Cosplay</strong>.
|
|
</mj-text>
|
|
<mj-divider border-color="#2c3e50" border-width="2px" width="50px"></mj-divider>
|
|
</mj-column>
|
|
</mj-section>
|
|
|
|
<mj-section background-color="#ffffff" padding-top="0px">
|
|
<mj-column width="100%">
|
|
<mj-text font-size="15px" color="#555555" line-height="22px">
|
|
Ton dossier est désormais entre les mains de notre équipe. Nous l'examinons avec attention et nous reviendrons vers toi <strong>sous peu</strong> par email ou via Discord pour la suite des événements.
|
|
</mj-text>
|
|
<mj-text font-size="15px" color="#555555" line-height="22px">
|
|
En attendant, n'hésite pas à nous suivre sur nos réseaux sociaux pour découvrir nos dernières activités !
|
|
</mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
|
|
<mj-section padding-top="10px">
|
|
<mj-column width="100%">
|
|
<mj-text font-size="11px" color="#999999" align="center">
|
|
E-Cosplay Association loi 1901<br>
|
|
42 rue de saint-quentin, 02800 Beautor<br>
|
|
Ceci est un message automatique, merci de ne pas y répondre directement.
|
|
</mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
{% endblock %}
|