reset-lost-password.html 988 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <title th:remove="all">Template for HTML email with inline image</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. </head>
  7. <body>
  8. <p th:inline="text">
  9. Hi [[${username}]], You are receiving this email because you have specified that you have forgotten your password and have requested to change it.
  10. </p>
  11. <p>The password request came from IP Address: <span th:text="${ipAddressFrom}"></span></p>
  12. <p>
  13. To accept this request click the link below.
  14. </p>
  15. <p>
  16. <a
  17. th:href="${websiteFullUrl}+'/user/reset-password/' + ${validationCode}"
  18. th:text="${websiteFullUrl}+'/user/reset-password/' + ${validationCode}"
  19. ></a>
  20. </p>
  21. <p>If you did not request a new password, you can cancel this request in the <a th:href="${websiteFullUrl} + '/user/'">User Control Panel.</a></p>
  22. <p>
  23. Regards, <br />
  24. <span th:text="${siteName}"></span>
  25. </p>
  26. </body>
  27. </html>