2024-03-06 14:25:36 -07:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Email</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Email</h1>
|
|
|
|
<h2>Attachments</h2>
|
|
|
|
<ul>
|
|
|
|
{% for attachment in attachments %}
|
2024-07-18 18:21:05 -06:00
|
|
|
<a href="{{ url_for('download_file', email_account=email_account, filename='F' + attachment.hash) }}">{{ attachment.filename }}</a>
|
2024-03-06 14:25:36 -07:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
<h2>Content</h2>
|
|
|
|
<pre>{{ email.raw_content }}</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|