{% extends "zerver/emails/email_base_messages.html" %} {% block content %} Hello {{ name }},

A lot has happened on Zulip while you've been away! Visit Zulip to catch up.

{% if unread_pms %}

Missed private messages

You have some missed private messages. Here are some of them:

{% for recipient_block in unread_pms %}
{{ recipient_block.header.html|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.html|safe }}
{% endfor %} {% endfor %}
{% endfor %} {% if remaining_unread_pms_count > 0 %}

+ {{ remaining_unread_pms_count }} more new private message{{ remaining_unread_pms_count|pluralize }}

{% endif %}

Catch up on the rest of your PMs.

{% endif %} {% if hot_conversations %}

Hot conversations

Here are some of the hot conversations that have happened while you've been gone:

{% for convo in hot_conversations %}
{% for recipient_block in convo.first_few_messages %}
{{ recipient_block.header.html|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.html|safe }}
{% endfor %} {% endfor %}
{% if convo.count > 0 %}

+ {{ convo.count }} more message{{ convo.count|pluralize }} by {{ convo.participants|display_list(4) }}.

{% endif %} {% endfor %}
{% endfor %}

Catch up on the rest of these conversations.

{% endif %} {% if new_users and new_streams.html %}

Group updates

{% elif new_users %}

New users

{% elif new_streams.html %}

New streams

{% endif %} {% if new_streams.html %}

{% if new_stream_count and new_stream_count > 1 %}A new stream was{% else %}Some new streams were{% endif %} created:

{{ new_streams.html|display_list(4)|safe }}.

Click on {% if new_stream_count and new_stream_count > 1 %}a{% else %}the{% endif %} name to check out some of the traffic, or visit your Streams page to subscribe.

{% endif %} {% if new_users %}

{% if new_streams.html or unread_pms or hot_conversations %}And finally, please{% else %}Please{% endif %} welcome {{ new_users|display_list(4) }} to Zulip!

{% endif %}

Click here to log in to Zulip and catch up.

Cheers,
The Zulip Team

{% endblock %} {% block manage_preferences %}

Manage email preferences | Unsubscribe from digest emails

{% endblock %}