Files
eamilsystemv2torn3u/app/templates/email_detail.html
huangzhenpc 0d53d7e1f3 xf
2025-03-05 14:42:37 +08:00

44 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>邮件详情</title>
<style>
body { font-family: Arial, sans-serif; margin: 20px; }
.email-container {
max-width: 800px;
margin: 0 auto;
}
.email-header {
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
margin-bottom: 20px;
}
.email-meta { color: #666; margin: 5px 0; }
.email-content {
white-space: pre-wrap;
padding: 20px;
background: #f9f9f9;
border-radius: 4px;
}
.back-link {
display: inline-block;
margin-bottom: 20px;
color: #0066cc;
text-decoration: none;
}
</style>
</head>
<body>
<div class="email-container">
<a href="{{ url_for('list_emails_page') }}" class="back-link">← 返回列表</a>
<div class="email-header">
<h2>{{ email.subject }}</h2>
<div class="email-meta">发件人: {{ email.sender }}</div>
<div class="email-meta">收件人: {{ email.recipient }}</div>
<div class="email-meta">时间: {{ email.timestamp }}</div>
</div>
<div class="email-content">{{ email.body }}</div>
<div class="email-content">{{ email.content }}</div>
</div>
</body>
</html>