{% extends "base.html" %} {% block title %}Netmail — {{ config.BBS_NAME }}{% endblock %} {% block content %}

Netmail (Private)

Compose Netmail
{% if not netmail_areas %}
No netmail yet. Use Compose Netmail to send a private message to someone on a QWK network.
{% endif %} {% for nm in netmail_areas %}
{{ nm.network.name }} — {{ nm.area.name }} {{ nm.messages|length }}
{% if nm.messages %} {% for m in nm.messages %} {% endfor %}
From To Subject Date Direction
{{ m.from_name }} {{ m.to_name }}{% if m.to_address %} <{{ m.to_address }}>{% endif %} {{ m.subject }} {{ m.created_at.strftime('%Y-%m-%d %H:%M') }} {% if m.direction == 'netmail' %} {% if m.sent_at %} sent {% else %} queued {% endif %} {% else %} inbound {% endif %}
{% else %}
No messages.
{% endif %}
{% endfor %}
{% endblock %}