12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org">
- <head>
- <title th:remove="all">Template for HTML email with inline image</title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- </head>
- <body>
- <p th:inline="text">
- Hi [[${username}]].
- </p>
- <p>
- You have recieved this message because you have requested an account validation email.<br />
- You have requested the following change: [[${changeType}]]
- </p>
- <p th:if="${changeType == 'Email'}">
- The request wants to change your email address to: [[${newEmail}]]
- </p>
- <p><b>Your validation code is: </b> [[${validationCode}]]</p>
- <p>To enter this code, navigate to the <b>User Control Panel</b> manually, or click the link below.</p>
- <p>
- <a th:href="${websiteFullUrl} + '/user/'" th:text="${websiteFullUrl} + '/user/'" ></a>
- </p>
- <p>
- Regards, <br />
- <span th:text="${siteName}"></span>
- </p>
- </body>
- </html>
|