1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <html lang="en"
- xmlns="http://www.w3.org/1999/xhtml"
- xmlns:th="http://www.thymeleaf.org">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title>email</title>
- </head>
- <body>
- <table width="800px" align="center" cellspacing="0" cellpadding="0"
- style="font-family: Microsoft YaHei;border-collapse: collapse;font-size: 16px; color: #4c4949">
- <tbody>
- <!-- <tr th:include="email/common :: head">-->
- <!-- </tr>-->
- <tr>
- <td width="700" style="padding: 40px 50px 15px;">
- <table border="0" cellspacing="0" cellpadding="0" width="700">
- <tr>
- <td style="line-height: 44px;font-weight: bold">Dear <span th:text="${emailParam['userId']}" style="font-weight: 600">userId</span>
- <p style="margin: 0;"> You have forgot your password of <span th:text="${emailParam['localDate']}" style="font-weight: 600">2020-09-07</span>. Please click the following link to change your password.</p>
- <p><span th:text="${emailParam['url']}" style="font-weight: 600">http://www.baidu.com</span></p>
- <p>If the above link cannot be clicked, you can also copy the link, paste it into your browser, and press enter to open the reset password page.</p>
- <p>Do not click the above link and ignore this message if you have not done so.</p>
- <p>Thank you very much!</p>
- </td>
- </tr>
- <tr>
- <td th:text="${emailParam['localDate']}"
- style="line-height: 24px;font-size: 14px;text-align: right;">
- 2019年08月02日
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <!-- <tr th:include="email/common :: footer">-->
- <!-- </tr>-->
- </tbody>
- </table>
- </body>
- </html>
|