幻影二级域名分发系统PHP版本完全免费,下载地址:https://blog.52hyjs.com/post-954.html
<!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: 'Segoe UI', 'Microsoft YaHei', sans-serif;
line-height: 1.6;
color: #333;
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.header {
border-bottom: 2px solid #00BCD4;
padding-bottom: 10px;
margin-bottom: 25px;
}
.title {
color: #2c3e50;
font-size: 20px;
margin: 0;
}
.info-box {
background-color: #f8f9fa;
border-left: 4px solid #00BCD4;
padding: 15px;
margin: 20px 0;
border-radius: 0 4px 4px 0;
}
.info-item {
margin: 10px 0;
display: flex;
}
.info-label {
font-weight: bold;
min-width: 100px;
color: #555;
}
.info-value {
color: #222;
flex: 1;
}
.footer {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #eee;
font-size: 14px;
color: #666;
}
.highlight {
color: #00BCD4;
font-weight: bold;
}
.success-highlight {
color: #4CAF50;
font-weight: bold;
background-color: #E8F5E9;
padding: 2px 6px;
border-radius: 3px;
}
.action-badge {
display: inline-block;
background-color: #00BCD4;
color: white;
padding: 2px 8px;
border-radius: 3px;
font-size: 12px;
margin-left: 5px;
}
.welcome-box {
background-color: #E0F7FA;
border: 1px solid #4DD0E1;
border-radius: 4px;
padding: 15px;
margin: 20px 0;
}
.welcome-title {
color: #00838F;
font-weight: bold;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.welcome-title:before {
content: "🎉";
margin-right: 8px;
}
.status-badge {
display: inline-block;
background-color: #4CAF50;
color: white;
padding: 2px 8px;
border-radius: 3px;
font-size: 12px;
margin-left: 8px;
font-weight: bold;
}
.guide-box {
background-color: #FFF3E0;
border: 1px dashed #FFB74D;
border-radius: 4px;
padding: 15px;
margin: 20px 0;
}
.guide-title {
color: #F57C00;
font-weight: bold;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.guide-title:before {
content: "🚀";
margin-right: 8px;
}
.features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
margin: 15px 0;
}
.feature-item {
display: flex;
align-items: center;
font-size: 14px;
}
.feature-item:before {
content: "✓";
color: #4CAF50;
font-weight: bold;
margin-right: 8px;
}
</style>
</head>
<body>
<div class="header">
<h1 class="title">欢迎加入!注册成功通知 <span class="action-badge">新用户</span></h1>
</div>
<p>尊敬的 <span class="highlight">{user}</span>,您好!</p>
<p>恭喜您已成功注册{user}账号!以下是您的注册信息:</p>
<div class="info-box">
<div class="info-item">
<div class="info-label">用户名</div>
<div class="info-value">{user}</div>
</div>
<div class="info-item">
<div class="info-label">注册状态</div>
<div class="info-value success-highlight">
注册成功
<span class="status-badge">已验证</span>
</div>
</div>
<div class="info-item">
<div class="info-label">注册邮箱</div>
<div class="info-value">{email}</div>
</div>
<div class="info-item">
<div class="info-label">注册时间</div>
<div class="info-value">{registerTime}</div>
</div>
</div>
<div class="welcome-box">
<div class="welcome-title">欢迎加入幻影二级域名分发系统!</div>
<p>感谢您选择我们的服务。您的账号已激活,现在可以开始使用所有功能了。</p>
<p>我们为您提供了完善的服务体系,希望您能在这里获得良好的体验。</p>
</div>
<div class="footer">
<p>再次欢迎您加入幻影二级域名分发系统社区!</p>
<p><strong>系统站长</strong> 敬上</p>
<p style="color: #999; font-size: 12px; margin-top: 10px;">此邮件为系统自动发送,请勿直接回复</p>
</div>
</body>
</html>