Files
goalfylearning-admin/docs/email_templates_preview.html

68 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>GoalfyAI 邮件模板预览</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background-color: #f0f0f0;
padding: 40px 20px;
}
.preview-container {
max-width: 1400px;
margin: 0 auto;
}
.preview-title {
text-align: center;
font-size: 32px;
font-weight: 700;
margin-bottom: 40px;
color: #1a1a1a;
}
.templates-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
gap: 40px;
}
.template-wrapper {
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.template-label {
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
color: #1a1a1a;
padding-bottom: 10px;
border-bottom: 2px solid #e5e5e5;
}
iframe {
width: 100%;
height: 700px;
border: 1px solid #e5e5e5;
border-radius: 8px;
}
</style>
</head>
<body>
<div class="preview-container">
<div class="preview-title">GoalfyAI 邮件模板预览</div>
<div class="templates-grid">
<div class="template-wrapper">
<div class="template-label">✅ 审批通过邮件</div>
<iframe src="email_preview_approval_new.html"></iframe>
</div>
<div class="template-wrapper">
<div class="template-label">❌ 审批拒绝邮件</div>
<iframe src="email_preview_rejection_new.html"></iframe>
</div>
</div>
</div>
</body>
</html>