{% if not message %}

Mail message could not be found

It may have expired. Increase your settings.MAIL_TOOLBAR_TTL if needed.

{% else %}
{{message.date_sent}} {{message.from_email}}
To: {% for to_email in message.to %}{{to_email}}{% endfor %}
{% if message.reply_to %} Reply-To: {{message.reply_to}}
{% endif %} {% if message.cc %} {{message.cc}}
{% endif %} {% if message.bcc %} {{message.bcc}}
{% endif %} {{message.subject}}
{% if message.attachments %}
{% for attachment in message.attachments %} {{attachment.0}} {% endfor %}
{% endif %} {% for multipart in alternatives %} {{multipart}} {% endfor %}
{% endif %}