email_template_en.html 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
  6. <meta name="description" content="email code"/>
  7. <meta name="viewport" content="width=device-width, initial-scale=1"/>
  8. </head>
  9. <!--邮箱验证码模板-->
  10. <body>
  11. <div style="background-color: #ececec; padding: 35px">
  12. <table
  13. cellpadding="0"
  14. style="
  15. width: 800px;
  16. height: 100%;
  17. margin: 0px auto;
  18. text-align: left;
  19. position: relative;
  20. border-top-left-radius: 5px;
  21. border-top-right-radius: 5px;
  22. border-bottom-right-radius: 5px;
  23. border-bottom-left-radius: 5px;
  24. font-size: 14px;
  25. line-height: 1.5;
  26. box-shadow: rgb(153, 153, 153) 0px 0px 5px;
  27. border-collapse: collapse;
  28. background-position: initial initial;
  29. background-repeat: initial initial;
  30. background: #fff;
  31. "
  32. >
  33. <tbody>
  34. <tr>
  35. <th
  36. valign="middle"
  37. style="
  38. background: linear-gradient(
  39. 90deg,
  40. #ebf1ff 24.34%,
  41. #e5fbf8 56.18%,
  42. #f2ebfe 90.18%
  43. );
  44. height: 25px;
  45. line-height: 25px;
  46. padding: 15px 35px;
  47. border-bottom-width: 1px;
  48. border-bottom-color: rgba(51, 112, 255);
  49. border-top-left-radius: 5px;
  50. border-top-right-radius: 5px;
  51. border-bottom-right-radius: 0px;
  52. border-bottom-left-radius: 0px;
  53. "
  54. >
  55. <div
  56. style="
  57. width: 500px;
  58. background: linear-gradient(180deg, #3370FF 0%, #7f3bf5 100%);
  59. -webkit-background-clip: text;
  60. font-size: 16px;
  61. -webkit-text-fill-color: transparent;
  62. font-style: normal;
  63. font-weight: 900;
  64. color: #1f2329;
  65. "
  66. >
  67. Powerful and easy-to-use enterprise level intelligent agent platform
  68. </div>
  69. </th>
  70. </tr>
  71. <tr>
  72. <td style="word-break: break-all">
  73. <div
  74. style="
  75. padding: 25px 35px 40px;
  76. background-color: #fff;
  77. opacity: 0.8;
  78. "
  79. >
  80. <h2 style="margin: 5px 0px">
  81. <font color="#333333" style="line-height: 20px">
  82. <font style="line-height: 22px" size="4">
  83. Dear user:</font
  84. >
  85. </font>
  86. </h2>
  87. <!-- 中文 -->
  88. <p>
  89. <font color="#ff8c00" style="font-weight: 900">${code}</font
  90. >&nbsp;&nbsp;This is your dynamic verification code. Please fill it in within 30 minutes. To
  91. protect the security of your account, please do not provide this verification code to anyone.
  92. </p>
  93. <br/>
  94. <div style="width: 100%; margin: 0 auto">
  95. <div
  96. style="
  97. padding: 10px 10px 0;
  98. border-top: 1px solid #ccc;
  99. color: #747474;
  100. margin-bottom: 20px;
  101. line-height: 1.3em;
  102. font-size: 12px;
  103. text-align: right;
  104. "
  105. >
  106. <p>Intelligent knowledge base project team</p>
  107. <br/>
  108. <p>
  109. Please do not reply to this system email<br/>
  110. </p>
  111. <!--<p>©***</p>-->
  112. </div>
  113. </div>
  114. </div>
  115. </td>
  116. </tr>
  117. </tbody>
  118. </table>
  119. </div>
  120. </body>
  121. </html>