2021-01-26 04:20:36 +01:00
|
|
|
{% if from_email != envelope_from %}
|
|
|
|
<h4>Envelope-From: {{ envelope_from }}</h4>
|
|
|
|
{% endif %}
|
2017-10-03 02:04:32 +02:00
|
|
|
<h4>From: {{ from_email }}</h4>
|
2020-07-14 08:41:10 +02:00
|
|
|
{% if reply_to %}
|
2021-05-10 07:02:14 +02:00
|
|
|
<h4>Reply to:
|
2020-07-14 08:41:10 +02:00
|
|
|
{% 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>
|
2021-04-21 00:46:14 +02:00
|
|
|
<hr />
|