dipper 0.5.3

An out-of-the-box modular dependency injection web application framework.
Documentation
<!DOCTYPE html>
<html lang="zh-CN">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>验证码邮件</title>
    <style>
        body {
            font-family: Arial, sans-serif;
        }

        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background-color: #f9f9f9;
        }

        .header {
            text-align: center;
            margin-bottom: 20px;
        }

        .code {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            text-align: center;
            margin: 20px 0;
        }

        .footer {
            margin-top: 20px;
            text-align: center;
            color: #777;
            font-size: 12px;
        }
    </style>
</head>

<body>
    <div class="container">
        <div class="header">
            <h2>验证码: {app_name} 验证您的账户</h2>
        </div>
        <p>尊敬的用户,</p>
        <p>您好!感谢您使用{app_name}。您的验证码是:</p>
        <p class="code">{code}</p>
        <p>请在 {duration} 内输入该验证码以完成验证。</p>
        <p>如果您没有请求此验证码,请忽略此邮件。为了确保您的账户安全,请勿将验证码透露给他人。</p>
        <p>如有任何问题或需要进一步帮助,请联系我们的客服支持团队。</p>
        <p>此致,<br>{app_name} 团队</p>
        <div class="footer">
            <p>注意:本邮件为系统自动发送,请勿直接回复。</p>
        </div>
    </div>
</body>

</html>