account-validation.html 940 B

12345678910111213141516171819202122232425262728293031323334
  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}]].
  10. </p>
  11. <p>
  12. You have recieved this message because you have requested an account validation email.<br />
  13. You have requested the following change: [[${changeType}]]
  14. </p>
  15. <p th:if="${changeType == 'Email'}">
  16. The request wants to change your email address to: [[${newEmail}]]
  17. </p>
  18. <p><b>Your validation code is: </b> [[${validationCode}]]</p>
  19. <p>To enter this code, navigate to the <b>User Control Panel</b> manually, or click the link below.</p>
  20. <p>
  21. <a th:href="${websiteFullUrl} + '/user/'" th:text="${websiteFullUrl} + '/user/'" ></a>
  22. </p>
  23. <p>
  24. Regards, <br />
  25. <span th:text="${siteName}"></span>
  26. </p>
  27. </body>
  28. </html>