doughnut-wedding/app/Resources/FOSUserBundle/views/Resetting/email.txt.twig

25 lines
571 B
Twig
Raw Normal View History

2017-04-09 18:08:01 -07:00
{% trans_default_domain 'FOSUserBundle' %}
{% block subject %}
{%- autoescape false -%}
2017-04-26 21:32:43 -07:00
[Doughnut Wedding] Password reset requested
2017-04-09 18:08:01 -07:00
{%- endautoescape -%}
{% endblock %}
{% block body_text %}
{% autoescape false %}
2017-04-26 21:32:43 -07:00
Hi {{ user.name }},
Someone has requested to reset the password for your account.
If this was not you please ignore this message. No further action is required.
To reset your password please visit this link in your browser :
{{ confirmationUrl }}
Thank you,
Katrina and Eric ❤
2017-04-09 18:08:01 -07:00
{% endautoescape %}
{% endblock %}
{% block body_html %}{% endblock %}