Files
e-cosplay/templates/mails/base.twig

69 lines
3.0 KiB
Twig
Raw Normal View History

{# base.twig - Modèle d'e-mail MJML #}
<mjml>
<mj-head>
<mj-title>{{ system.subject }}</mj-title>
<mj-attributes>
<mj-all font-family="Inter, Helvetica, Arial, sans-serif"></mj-all>
<mj-text font-size="16px" line-height="24px" color="#333333"></mj-text>
<mj-button background-color="#4A90E2" color="#ffffff" border-radius="4px" font-size="16px" padding="10px 25px"></mj-button>
</mj-attributes>
<mj-style inline="inline">
.link-style {
color: #4A90E2;
text-decoration: none;
}
.footer-text {
font-size: 12px;
color: #888888;
}
</mj-style>
</mj-head>
<mj-body background-color="#F2F2F2">
{# Section d'en-tête #}
<mj-section background-color="#ffffff" padding-bottom="0px">
<mj-column>
{# Logo mis à jour pour SARL SITECONSEIL #}
<mj-image src="https://mainframe.esy-web.dev/assets/logo_siteconseil.png" alt="Logo SARL SITECONSEIL" align="center" width="150px" padding-bottom="20px"></mj-image>
</mj-column>
</mj-section>
{# Section de contenu #}
<mj-section background-color="#ffffff" padding-top="0px" padding-bottom="0px">
{# Titre dynamique ajouté avant le bloc de contenu, directement dans la section #}
<mj-text font-size="20px" font-weight="bold" align="center" padding-bottom="20px">{{ system.subject }}</mj-text>
<mj-column width="100%">
{% block content %}
{% endblock %}
</mj-column>
</mj-section>
{# Section d'espacement #}
<mj-section background-color="#ffffff" padding-top="0px" padding-bottom="20px">
<mj-column>
<mj-spacer height="20px"></mj-spacer>
</mj-column>
</mj-section>
{# Section de pied de page #}
<mj-section background-color="#F2F2F2" padding-top="20px" padding-bottom="20px">
<mj-column>
<mj-text align="center" css-class="footer-text">
&copy; {{ "now"|date("Y") }} SARL SITECONSEIL. Tous droits réservés.
</mj-text>
{# Adresse et contact de l'entreprise mis à jour pour SARL SITECONSEIL #}
<mj-text align="center" css-class="footer-text" padding-top="10px">
SARL SITECONSEIL, 27 Rue Le Serurier, 02100 Saint-Quentin, France
<br/>
Téléphone : 03 23 62 73 60
</mj-text>
<mj-social font-size="15px" icon-size="24px" mode="horizontal" padding-top="10px">
<mj-social-element name="facebook" href="#" background-color="#3B5998"></mj-social-element>
<mj-social-element name="linkedin" href="#" background-color="#0077B5"></mj-social-element>
</mj-social>
</mj-column>
</mj-section>
<mj-image src="{{ system.tracking_url }}"></mj-image>
</mj-body>
</mjml>