refactor(email): 优化邮件模板的数据处理和展示逻辑
- 在 EmailTemplateUtil 中增加了对 email 和 newPassword 的非空校验 - 更新了 notification.html、password-reset.html 和 register-success.html 模板中的条件判断逻辑 - 优化了模板的 HTML 结构和样式,提高了邮件的可读性和美观性
This commit is contained in:
@@ -10,41 +10,41 @@
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #333;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
|
||||
.email-container {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
background-color: #ffffff;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
|
||||
.header {
|
||||
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
|
||||
padding: 40px 30px;
|
||||
text-align: center;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
||||
.logo {
|
||||
font-size: 32px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 10px;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
|
||||
|
||||
.header-subtitle {
|
||||
font-size: 16px;
|
||||
opacity: 0.9;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
|
||||
.notification-icon {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
@@ -56,25 +56,25 @@
|
||||
justify-content: center;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
|
||||
.content {
|
||||
padding: 40px 30px;
|
||||
}
|
||||
|
||||
|
||||
.title {
|
||||
font-size: 24px;
|
||||
color: #333;
|
||||
margin-bottom: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.message {
|
||||
font-size: 16px;
|
||||
color: #666;
|
||||
margin-bottom: 30px;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
|
||||
.notification-content {
|
||||
background-color: #f8f9fa;
|
||||
border-radius: 8px;
|
||||
@@ -82,23 +82,23 @@
|
||||
margin: 30px 0;
|
||||
border-left: 4px solid #4facfe;
|
||||
}
|
||||
|
||||
|
||||
.notification-content h3 {
|
||||
color: #333;
|
||||
margin-bottom: 15px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
|
||||
.notification-body {
|
||||
color: #555;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
|
||||
.cta-section {
|
||||
text-align: center;
|
||||
margin: 40px 0;
|
||||
}
|
||||
|
||||
|
||||
.cta-button {
|
||||
display: inline-block;
|
||||
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
|
||||
@@ -111,12 +111,12 @@
|
||||
transition: transform 0.2s ease;
|
||||
box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
|
||||
}
|
||||
|
||||
|
||||
.cta-button:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 6px 20px rgba(79, 172, 254, 0.6);
|
||||
}
|
||||
|
||||
|
||||
.info-box {
|
||||
background-color: #e3f2fd;
|
||||
border: 1px solid #bbdefb;
|
||||
@@ -125,37 +125,37 @@
|
||||
margin: 20px 0;
|
||||
color: #1565c0;
|
||||
}
|
||||
|
||||
|
||||
.info-box strong {
|
||||
color: #0d47a1;
|
||||
}
|
||||
|
||||
|
||||
.footer {
|
||||
background-color: #2c3e50;
|
||||
color: #ecf0f1;
|
||||
padding: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.footer-content {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
|
||||
.footer-links {
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
|
||||
.footer-links a {
|
||||
color: #3498db;
|
||||
text-decoration: none;
|
||||
margin: 0 15px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
|
||||
.footer-links a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
||||
.copyright {
|
||||
font-size: 12px;
|
||||
color: #95a5a6;
|
||||
@@ -163,7 +163,7 @@
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid #34495e;
|
||||
}
|
||||
|
||||
|
||||
.timestamp {
|
||||
text-align: right;
|
||||
font-size: 12px;
|
||||
@@ -172,21 +172,21 @@
|
||||
padding-top: 15px;
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.email-container {
|
||||
margin: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
|
||||
.header, .content, .footer {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
|
||||
.logo {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
|
||||
.title {
|
||||
font-size: 20px;
|
||||
}
|
||||
@@ -201,14 +201,14 @@
|
||||
<div class="header-subtitle">企业级数字化解决方案</div>
|
||||
<div class="notification-icon">📢</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Content -->
|
||||
<div class="content">
|
||||
<h1 class="title">${title!'系统通知'}</h1>
|
||||
<p class="message">
|
||||
${greeting!'您好!'}我们有一条重要通知需要告知您,请查看以下详细信息。
|
||||
</p>
|
||||
|
||||
|
||||
<!-- Notification Content -->
|
||||
<div class="notification-content">
|
||||
<h3>📋 通知详情</h3>
|
||||
@@ -216,40 +216,40 @@
|
||||
${content!'这是一条系统通知消息。'}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Info Box -->
|
||||
<% if(infoMessage!) { %>
|
||||
<% if(has(infoMessage)) { %>
|
||||
<div class="info-box">
|
||||
<strong>ℹ️ 温馨提示:</strong> ${infoMessage!}
|
||||
</div>
|
||||
<% } %>
|
||||
|
||||
|
||||
<!-- CTA Button -->
|
||||
<% if(actionUrl!) { %>
|
||||
<% if(has(actionUrl)) { %>
|
||||
<div class="cta-section">
|
||||
<a href="${actionUrl!}" class="cta-button">${actionText!'查看详情'}</a>
|
||||
</div>
|
||||
<% } %>
|
||||
|
||||
|
||||
<!-- Timestamp -->
|
||||
<div class="timestamp">
|
||||
发送时间:${sendTime!}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Footer -->
|
||||
<div class="footer">
|
||||
<div class="footer-content">
|
||||
<strong>南宁网宿信息科技有限公司</strong><br>
|
||||
专业的企业数字化转型服务商
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer-links">
|
||||
<a href="https://www.gxwebsoft.com">官方网站</a>
|
||||
<a href="https://www.gxwebsoft.com/help">帮助中心</a>
|
||||
<a href="https://www.gxwebsoft.com/contact">联系我们</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="copyright">
|
||||
© 2024 南宁网宿信息科技有限公司 版权所有<br>
|
||||
如有疑问,请联系客服:170083662@qq.com
|
||||
|
||||
Reference in New Issue
Block a user