2017-10-03 02:04:32 +02:00
|
|
|
<h4>From: {{ from_email }}</h4>
|
2020-07-14 08:41:10 +02:00
|
|
|
{% if reply_to %}
|
|
|
|
<h4>Reply To:
|
|
|
|
{% for email in reply_to %}
|
|
|
|
{{ email }}
|
|
|
|
{% endfor %}
|
|
|
|
</h4>
|
|
|
|
{% endif %}
|
2017-10-03 02:04:32 +02:00
|
|
|
<h4>To:
|
|
|
|
{% for recipient in recipients %}
|
|
|
|
{{ recipient }}
|
|
|
|
{% endfor %}
|
|
|
|
</h4>
|
|
|
|
<h4>Subject: {{subject}}</h4>
|
2017-10-05 19:53:49 +02:00
|
|
|
<div class="email-html" style="display: block;">
|
|
|
|
{% autoescape off %}
|
|
|
|
{{ html_message }}
|
|
|
|
{% endautoescape %}
|
|
|
|
</div>
|
|
|
|
<div class="email-text" style="display: none;">
|
|
|
|
<pre>{{ body }}</pre>
|
|
|
|
</div>
|
2020-04-19 12:52:45 +02:00
|
|
|
<hr>
|