{% trans_default_domain 'FOSUserBundle' %} {% block subject %} {%- autoescape false -%} {{ 'registration.email.subject'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }} {%- endautoescape -%} {% endblock %} {% block body_text %} {% autoescape false %} {{ 'registration.email.message'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }} {% endautoescape %} {% endblock %} {% block body_html %} {{ "Welcome"|trans }} {{ user.getFullName }}
{{ "Welcome"|trans({}, 'messages') }} {{ user.getFullName }},
{{ "Please confirm your account by clicking the link below"|trans({}, 'messages') }}
{{ "This link can only be used once to validate your account"|trans({}, 'messages') }}
— {{ 'Best regards, the %website_name% team'|trans({'%website_name%': services.getSetting("website_name")}, 'messages') }}
{% endblock %}