mirror of https://github.com/zulip/zulip.git
17 lines
383 B
HTML
17 lines
383 B
HTML
{% if failed %}
|
|
<p>{{template}} failed to render: {{ reason }}</p>
|
|
{% else %}
|
|
<h4>From: {{ from_email }}</h4>
|
|
<h4>To:
|
|
{% for recipient in recipients %}
|
|
{{ recipient }}
|
|
{% endfor %}
|
|
</h4>
|
|
<h4>Subject: {{subject}}</h4>
|
|
{% autoescape off %}
|
|
{{ html_message }}
|
|
{% endautoescape %}
|
|
<pre>{{ body }}</pre>
|
|
{% endif %}
|
|
<hr/>
|