email.txt.twig 448 B

1234567891011
  1. {% block subject %}
  2. {% autoescape false %}
  3. {{ 'registration.email.subject'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}, 'FOSUserBundle') }}
  4. {% endautoescape %}
  5. {% endblock %}
  6. {% block body_text %}
  7. {% autoescape false %}
  8. {{ 'registration.email.message'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}, 'FOSUserBundle') }}
  9. {% endautoescape %}
  10. {% endblock %}
  11. {% block body_html %}{% endblock %}