zulip/templates/zephyr/missed_message_email_html.txt

27 lines
799 B
Plaintext
Raw Normal View History

{% comment %}
Mail sent to user when she was not logged in and received a PM or @-mention
{% endcomment %}
Hello {{ name }},
<p>
While you were away you received {{ messages|length }} new message{{ messages|pluralize }}{% if mention %} in which you were mentioned{%endif %}!
</p>
<div id='messages'>
{% for message in messages %}
<div id='message_subject'>{{ message.sender }}:</div>
<div id='message_content'>{{ message.rendered_content|safe }}</div>
{% endfor %}
</div>
<p><a href="{{ url }}">Click here to log in to Humbug and view your new messages.</a></p>
{% if reply_warning %}
<p>Please do not reply to this automated message. To respond to the missed messages you have received, please log on to Humbug and send your replies there.</p>
{% endif %}
<p>Cheers,
<br>
The Humbug Team</p>