18 lines
378 B
HTML
18 lines
378 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', email_account=email_account, filename='F' + attachment.hash) }}">{{ attachment.filename }}</a>
|
|
{% endfor %}
|
|
</ul>
|
|
<h2>Content</h2>
|
|
<pre>{{ email.raw_content }}</pre>
|
|
</body>
|
|
</html>
|