Covivo/mobicoop

View on GitHub
api/templates/communication/fr/email/notification/solidary_contact_email.html.twig

Summary

Maintainability
Test Coverage
{# CAREFUL : Some client might need to replicate this template #}
{% extends 'communication/fr/email/notification/base.html.twig' %}
{% block body %}
    <p>Un administrateur solidaire vous contacte.</p>
    <p>{{ context.text }}</p>
    {% if context.signature != null %}
        {% if context.signature.text != null %}
            <p>{{ context.signature.text }}</p>
        {% endif %}
        {% if context.signature.logo != null %}
            <img src="{{ context.signature.logo }}" alt="" style="width:40%;max-width:1000px;height:auto;max-height:250px;border-style:none;" />
        {% endif %}
    {% endif %}
{% endblock %}