{% trans_default_domain 'FOSUserBundle' %}
{% block subject %}
{% autoescape false %}
{{ 'registration.email.subject'|trans({'%username%': user.firstname, '%confirmationUrl%': confirmationUrl}) }}
{% endautoescape %}
{% endblock %}
{% block body_text %}
{% autoescape false %}
{{ 'registration.email.message'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }}
{% endautoescape %}
{% endblock %}
{% block body_html %}
Full Screen
|
Hello Mr/Mme {{ user.firstname~' '~user.lastname| upper }} ;
Please confirme Your Email.
|
|
|
To finish activating your account - please visit
|
|
|
| |
All Rights Reserved | Powered by Interactions Copyright 2017 Pafciconline
|
|
{% endblock %}