37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>邮件列表</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; margin: 20px; }
|
|
.email-list { list-style: none; padding: 0; }
|
|
.email-item {
|
|
border: 1px solid #ddd;
|
|
margin: 10px 0;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
}
|
|
.email-item:hover { background-color: #f5f5f5; }
|
|
.email-subject { font-weight: bold; }
|
|
.email-meta { color: #666; font-size: 0.9em; }
|
|
a { text-decoration: none; color: inherit; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>邮件列表</h1>
|
|
<ul class="email-list">
|
|
{% for email in emails %}
|
|
<li class="email-item">
|
|
<a href="{{ url_for('view_email_page', message_id=email.message_id) }}">
|
|
<div class="email-subject">{{ email.subject }}</div>
|
|
<div class="email-meta">
|
|
发件人: {{ email.sender }} |
|
|
收件人: {{ email.recipients|join(', ') }} |
|
|
时间: {{ email.timestamp }}
|
|
</div>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html> |