{# CAREFUL : Some client might need to replicate this template #}
{% extends 'communicationAlt/fr/email/notification/base.html.twig' %}
{% block body %}
{% set recipient = context.user %}
{% set sender = context.sender %}
{% set sendingDate = context.sendingDate %}
You've got a new message !
|
|
|
Hello {{recipient.givenName|capitalize}} {{recipient.shortFamilyName|capitalize}},
|
|
{{sender.givenName|capitalize}} {{sender.shortFamilyName|capitalize}} contacted you on {{ sendingDate|date("d/m/Y") }}. You have not yet replied to his message. Please do it as soon as possible, {{sender.givenName|capitalize}} {{sender.shortFamilyName|capitalize}} awaits your reply to organize future carpooling trips !
|
|
|
{{ context.text | nl2br }}
|
|
|
|
Do not reply to this e-mail directly, your carpooler will not receive your reply. If the message received is disrespectful, inappropriate or fraudulent, do not hesitate to report the user to us.
|
|
{% endblock %}