2017-06-27 19:09:15 +02:00
{% extends "zerver/emails/email_base_messages.html" %}
2013-05-03 20:24:55 +02:00
2017-06-27 19:09:15 +02:00
{% block content %}
2017-11-29 13:42:39 +01:00
{% if show_message_content %}
2017-07-06 23:59:11 +02:00
{% for recipient_block in messages %}
2019-06-11 12:39:42 +02:00
{% for sender_block in recipient_block.senders %}
< div class = "missed_message" >
2017-07-06 23:59:11 +02:00
{% for message_block in sender_block.content %}
{{ message_block.html|safe }}
{% endfor %}
2019-06-11 12:39:42 +02:00
< / div >
{% endfor %}
2017-07-06 23:59:11 +02:00
{% endfor %}
2020-01-31 12:55:47 +01:00
{% else %}
2023-04-25 07:55:33 +02:00
< div class = "missed_message no-content-explanation" >
2020-01-31 12:55:47 +01:00
{% if message_content_disabled_by_realm %}
2024-05-09 13:28:39 +02:00
{% trans help_url=realm_url + "/help/hide-message-content-in-emails" %}This email does not include message content because your organization has disabled < a class = "content_disabled_help_link" href = "{{ help_url }}" > message content appearing in email notifications< / a > .{% endtrans %}
2020-01-31 12:55:47 +01:00
{% elif message_content_disabled_by_user %}
2024-05-09 13:28:39 +02:00
{% trans alert_notif_url=realm_url + "/help/dm-mention-alert-notifications" %}This email does not include message content because you have disabled < a class = "content_disabled_help_link" href = "{{ alert_notif_url }}" > message content appearing in email notifications< / a > .{% endtrans %}
2020-01-31 12:55:47 +01:00
{% endif %}
< / div >
2017-11-29 13:42:39 +01:00
{% endif %}
2017-06-27 19:09:15 +02:00
{% endblock %}
2013-05-23 17:48:35 +02:00
2017-06-27 19:09:15 +02:00
{% block manage_preferences %}
2019-06-18 14:13:53 +02:00
< div class = "email-preferences" >
2021-04-21 00:46:14 +02:00
— < br / >
2022-09-28 17:25:09 +02:00
{% if personal_mentioned %}
{% trans %}You are receiving this because you were personally mentioned.{% endtrans %}< br / >
{% elif mentioned_user_group_name %}
{% trans %}You are receiving this because @{{ mentioned_user_group_name }} was mentioned.{% endtrans %}< br / >
2023-06-07 19:19:33 +02:00
{% elif topic_wildcard_mentioned_in_followed_topic %}
2024-04-15 21:05:46 +02:00
{% trans %}You are receiving this because all topic participants were mentioned in #{{ channel_name }} > {{ topic_name }}.{% endtrans %}< br / >
2023-06-03 16:51:38 +02:00
{% elif stream_wildcard_mentioned_in_followed_topic %}
2023-06-02 09:42:58 +02:00
{% trans %}You are receiving this because you have wildcard mention notifications enabled for topics you follow.{% endtrans %}< br / >
2023-06-07 19:19:33 +02:00
{% elif topic_wildcard_mentioned %}
2024-04-15 21:05:46 +02:00
{% trans %}You are receiving this because all topic participants were mentioned in #{{ channel_name }} > {{ topic_name }}.{% endtrans %}< br / >
2023-06-03 16:51:38 +02:00
{% elif stream_wildcard_mentioned %}
2024-04-15 21:05:46 +02:00
{% trans %}You are receiving this because everyone was mentioned in #{{ channel_name }}.{% endtrans %}< br / >
2023-05-17 16:01:16 +02:00
{% elif followed_topic_email_notify %}
{% trans %}You are receiving this because you have email notifications enabled for topics you follow.{% endtrans %}< br / >
2023-06-22 06:32:32 +02:00
{% elif stream_email_notify %}
2024-04-15 21:05:46 +02:00
{% trans %}You are receiving this because you have email notifications enabled for #{{ channel_name }}.{% endtrans %}< br / >
2019-07-08 08:02:17 +02:00
{% endif %}
2019-06-18 14:15:23 +02:00
{% if reply_to_zulip %}
2024-05-09 13:28:39 +02:00
{% trans notif_url=realm_url + "/#settings/notifications" %}Reply to this email directly, < a href = "{{ narrow_url }}" > view it in {{ realm_name }} Zulip< / a > , or < a href = "{{ notif_url }}" > manage email preferences< / a > .{% endtrans %}
2020-01-31 12:55:47 +01:00
{% elif not show_message_content %}
2024-05-09 13:28:39 +02:00
{% trans notif_url=realm_url + "/#settings/notifications" %}< a href = "{{ narrow_url }}" > View or reply in {{ realm_name }} Zulip< / a > , or < a href = "{{ notif_url }}" > manage email preferences< / a > .{% endtrans %} < br / >
2019-06-18 14:15:23 +02:00
{% else %}
2024-05-09 13:28:39 +02:00
{% trans notif_url=realm_url + "/#settings/notifications" %}< a href = "{{ narrow_url }}" > Reply in {{ realm_name }} Zulip< / a > , or < a href = "{{ notif_url }}" > manage email preferences< / a > .{% endtrans %} < br / >
2021-04-21 00:46:14 +02:00
< br / >
2020-04-24 19:46:52 +02:00
{% trans url="https://zulip.readthedocs.io/en/latest/production/email-gateway.html" %}
Do not reply to this email. This Zulip server is not configured to accept incoming emails (< a href = "{{ url }}" > help< / a > ).
{% endtrans %}
2019-07-20 02:16:17 +02:00
2019-06-18 14:15:23 +02:00
{% endif %}
2019-06-18 14:13:53 +02:00
< / div >
2017-06-27 19:09:15 +02:00
{% endblock %}