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

Compose QWK Netmail

Send a private 1-on-1 message to a user on another BBS via DOVE-Net or another QWK network. The message will be queued and delivered on the next poll. The recipient's BBS routes it to them by name.

{{ form.hidden_tag() }}
{{ form.network_id.label(class="form-label") }} {{ form.network_id(class="form-select") }}
{{ form.to_name.label(class="form-label") }} {{ form.to_name(class="form-control", placeholder="e.g. Rob Swindell, SYSOP, or a user handle") }}
The name as it appears on the recipient's BBS.
{{ form.to_address.label(class="form-label") }} {{ form.to_address(class="form-control", placeholder="e.g. 1:103/705 (only needed if name is ambiguous)") }}
{{ form.subject.label(class="form-label") }} {{ form.subject(class="form-control") }}
{{ form.body.label(class="form-label") }} {{ form.body(class="form-control", rows=15, style="font-family:monospace;") }}
Cancel
{% endblock %}