71 lines
2.0 KiB
HTML
71 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Verification Code</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333333;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
}
|
|
.code-box {
|
|
background-color: #f8f8f8;
|
|
padding: 20px;
|
|
text-align: center;
|
|
margin: 20px 0;
|
|
border-radius: 5px;
|
|
}
|
|
.verification-code {
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
letter-spacing: 5px;
|
|
color: #2b2b2b;
|
|
}
|
|
.footer {
|
|
font-size: 12px;
|
|
color: #666666;
|
|
text-align: center;
|
|
margin-top: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h2>Traffic Reminder</h2>
|
|
</div>
|
|
|
|
<p>Dear User,</p>
|
|
|
|
<p>Thank you for using our service. We want to inform you that from now on, your package traffic is less than <span th:text="${threshold}">10</span>%.</p>
|
|
|
|
<div class="code-box">
|
|
<div> <strong>Total Traffic:</strong> <span th:text="${totalTraffic}">10 GB</span></div>
|
|
<div> <strong>Used Traffic:</strong> <span th:text="${usedTraffic}">1 GB</span></div>
|
|
</div>
|
|
|
|
<p>To avoid service interruption, please purchase the package in time.</p>
|
|
|
|
<p>Best regards,<br>
|
|
Your Company Name</p>
|
|
|
|
<div class="footer">
|
|
<p>This is an automated message, please do not reply to this email</p>
|
|
<p>© 2024 Your Company Name. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |