{% extends "base.html" %} {% load i18n %} {% block icon %}mail{% endblock %} {% block content %} {% comment %} {% endcomment %}
attach{{object.attach}}
send{{object.send}}
{% trans "From" %}{{object.from_email}}
{% trans "To" %}{{object.to|join:", "}}
{% trans "Bcc" %}{{object.bcc|join:", "}}
{% trans "Subject" %}{{object.subject}}
{% trans "Body" %}
{{object.body}}
{% trans "Attachments" %}{{object.attachments|join:", "}}
content_subtype{{object.content_subtype}}
mixed_subtype{{object.mixed_subtype}}
encoding{{object.encoding}}
recipients{{object.recipients|join:", "}}
extra_headers{{object.extra_headers}}
{% trans "Full message" %}
{{object.message}}
{% csrf_token %}
{% endblock %} {% comment %} Local Variables: ** mode: django-html ** tab-width: 4 ** indent-tabs-mode: nil ** End: ** {% endcomment %}