mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 21:13:36 +00:00
This will hopefully incentivize people to click one and get back into the app. We'll also need this for digest emails. (imported from commit 57191c3fcca3b12df93a81e4692bb7eb8ccc83b2)
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
{% comment %}
|
|
Mail sent to user when she was not logged in and received a PM or @-mention
|
|
{% endcomment %}
|
|
|
|
Hello {{ name }},
|
|
|
|
While you were away you received {{ message_count }} new message{{ messages|pluralize }}{% if mention %} in which you were mentioned{% endif %}!
|
|
|
|
|
|
{% for recipient_block in messages %}
|
|
{{ recipient_block.header.plain|safe }}
|
|
{% for sender_block in recipient_block.senders %}
|
|
{% if sender_block.sender %}{{ sender_block.sender }}{% endif %}{% for message_block in sender_block.content %}
|
|
{{ message_block.plain }}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
|
|
Click here to log in to Zulip and view your new messages:
|
|
|
|
{{ url }}
|
|
|
|
{% if reply_warning %}
|
|
Please do not reply to this automated message. To respond to the missed messages you have received, please log on to Zulip and send your replies there.
|
|
{% endif %}
|
|
|
|
Cheers,
|
|
The Zulip Team
|
|
|
|
Note: click here to open your Zulip Settings page and disable future email notifications:
|
|
|
|
https://zulip.com/#settings
|