<!DOCTYPE html>
|
<html>
|
<head>
|
<meta charset="UTF-8">
|
<title>Email Verification Code</title>
|
<style>
|
/* 内联样式确保邮件客户端兼容 */
|
.code-box {
|
display: inline-block;
|
background-color: #000; /* 黑色背景 */
|
color: #fff; /* 白色字体 */
|
padding: 10px 20px; /* 内边距 */
|
border-radius: 10px; /* 圆角 */
|
font-size: 20px; /* 字体大小 */
|
font-weight: bold; /* 加粗 */
|
}
|
</style>
|
</head>
|
<body>
|
<p>Thank you for creating a FracTionxEX account.</p>
|
<p>Please enter the following verification code to complete your registration:</p>
|
|
<!-- 带样式的验证码 -->
|
<div class="code-box">${code}</div>
|
|
<p>This code is valid for 10 minutes. Please do not share it with anyone. If this was not requested by you, please contact our customer support team immediately.</p>
|
<p style="text-align: right; margin-top: 30px;">— The FracTionxEX Team</p>
|
</body>
|
</html>
|