{% extends "base.html" %} {% block title %}{{ m.subject or 'Netmail' }}{% endblock %} {% block content %}

{{ m.subject or '(no subject)' }}

Headers {% if m.is_crash %}CRASH{% endif %} {% if m.is_private %}PVT{% endif %} {{ m.status }}
From
{{ m.from_name }} <{{ m.from_address }}>
To
{{ m.to_name }} <{{ m.to_address }}>
Subject
{{ m.subject or '(no subject)' }}
Date
{{ m.created_at.strftime('%Y-%m-%d %H:%M:%S UTC') }}
{% if m.msgid %}
MSGID
{{ m.msgid }}
{% endif %} {% if m.reply_msgid %}
REPLY
{{ m.reply_msgid }}
{% endif %}
CHRS
{{ m.chrs }}
{{ m.body | msgbody(m.chrs if m.chrs is defined else '') }}
{% if m.kludges %}
Kludges (click to expand)
{{ m.kludges }}
{% endif %}
Reply
← Back
{% endblock %}