email.txt.twig 741 Bytes
Newer Older
Julien Jorry committed
1 2 3 4 5 6 7
{% trans_default_domain 'FOSUserBundle' %}
{% block subject %}
{%- autoescape false -%}
{{ 'resetting.email.subject'|trans({'%username%': user.username}) }}
{%- endautoescape -%}
{% endblock %}

Yvon committed
8 9
{% block body_text %}
{% if not tav_env %}
10
    {% autoescape false %}
Yvon committed
11
    {{ 'resetting.email.message'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }}
12
    {% endautoescape %}
Yvon committed
13 14 15 16 17
{% endif %}
{% endblock %}

{% block body_html %}
{% if tav_env %}
18
    {% autoescape false %}
Yvon committed
19
    {{ 'Bonjour ' ~ user.username ~ ' !<br/><br/>Pour réinitialiser votre mot de passe, merci de <a href=' ~ confirmationUrl ~ '>cliquer sur ce lien</a>.<br/><br/>Cordialement,\nL\'équipe\n' }}
20 21
    {% endautoescape %}
{% endif %}
Yvon committed
22
{% endblock %}