{% extends "base.html" %} {% block content %}

{{ msg.subject or "(no subject)" }}

From {{ msg.from }} To {{ msg.to|join(", ") }}

{{ msg.when }}

{% if msg.htmlBody %}
{{ (msg.htmlBody | safe) }}
{% elif msg.textBody %}
{{ msg.textBody }}
{% else %}
(no body)
{% endif %}
Reply Forward
{% if msg.attachments %}

Attachments

{% endif %} {% endblock %}