password_reset_email.txt 663 B

123456789101112131415161718
  1. {% load i18n %}{% autoescape off %}
  2. {% blocktrans %}You're receiving this e-mail because you requested a password reset
  3. for your user account at the Penobscot Bay Press Community Storefront{% endblocktrans %}.
  4. {% trans "Please click the following link and enter a new password:" %}
  5. {% block reset_link %}
  6. {{ protocol }}://{{ domain }}{% url password_reset_confirm uidb36=uid token=token %}
  7. {% endblock %}
  8. {% if not without_usernames %}{% blocktrans with user.username as username %}
  9. Your username is {{ username }}.
  10. {% endblocktrans %}
  11. {% endif %}
  12. {% trans "Thank you for visiting our site!" %}
  13. {% trans "Sincerely" %},
  14. Penobscot Bay Press
  15. {% endautoescape %}