imap-archiver/templates/email.html

18 lines
349 B
HTML

<!doctype html>
<html>
<head>
<title>Email</title>
</head>
<body>
<h1>Email</h1>
<h2>Attachments</h2>
<ul>
{% for attachment in attachments %}
<a href="{{ url_for('download_file', filename='F' + attachment.hash) }}">{{ attachment.filename }}</a>
{% endfor %}
</ul>
<h2>Content</h2>
<pre>{{ email.raw_content }}</pre>
</body>
</html>