2013-05-03 20:24:55 +02:00
{% comment %}
2013-05-22 23:52:17 +02:00
Mail sent to user when she was not logged in and received a PM or @-mention
2013-05-03 20:24:55 +02:00
{% endcomment %}
Hello {{ name }},
<p>
2013-05-22 23:52:17 +02:00
While you were away you received {{ messages|length }} new message{{ messages|pluralize }}{% if mention %} in which you were mentioned{%endif %}!
2013-05-03 20:24:55 +02:00
</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>
2013-05-13 16:26:52 +02:00
{% 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 %}
2013-05-03 20:24:55 +02:00
<p>Cheers,
<br>
The Humbug Team</p>