mirror of https://github.com/zulip/zulip.git
27 lines
799 B
Plaintext
27 lines
799 B
Plaintext
{% 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>
|