2017-11-29 13:42:39 +01:00
|
|
|
{% if show_message_content %}
|
2013-05-20 18:48:08 +02:00
|
|
|
{% for recipient_block in messages %}
|
2019-06-11 12:39:42 +02:00
|
|
|
{% for sender_block in recipient_block.senders %}
|
|
|
|
{% for message_block in sender_block.content %}
|
|
|
|
{{ message_block.plain }}
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
2013-05-03 20:24:55 +02:00
|
|
|
{% endfor %}
|
2020-01-31 12:55:47 +01:00
|
|
|
{% else %}
|
|
|
|
{% if message_content_disabled_by_realm %}
|
2020-04-24 19:46:52 +02:00
|
|
|
{% trans hide_content_url=realm_uri + "/help/hide-message-content-in-emails" %}
|
2020-01-31 12:55:47 +01:00
|
|
|
This email does not include message content because your organization has disabled message content appearing in email notifications.
|
2020-04-24 19:46:52 +02:00
|
|
|
See {{ hide_content_url }} for more details.
|
|
|
|
{% endtrans %}
|
2020-01-31 12:55:47 +01:00
|
|
|
{% elif message_content_disabled_by_user %}
|
2020-04-24 19:46:52 +02:00
|
|
|
{% trans alert_notif_url=realm_uri + "/help/pm-mention-alert-notifications" %}
|
2020-01-31 12:55:47 +01:00
|
|
|
This email does not include message content because you have disabled message content appearing in email notifications.
|
2020-04-24 19:46:52 +02:00
|
|
|
See {{ alert_notif_url }} for more details.
|
|
|
|
{% endtrans %}
|
2020-01-31 12:55:47 +01:00
|
|
|
{% endif %}
|
2017-11-29 13:42:39 +01:00
|
|
|
{% endif %}
|
2013-05-20 18:48:08 +02:00
|
|
|
|
2019-07-20 02:16:17 +02:00
|
|
|
--
|
2022-09-28 17:25:09 +02:00
|
|
|
{% if personal_mentioned %}
|
|
|
|
{% trans %}You are receiving this because you were personally mentioned.{% endtrans %}
|
|
|
|
{% elif mentioned_user_group_name %}
|
|
|
|
{% trans %}You are receiving this because @{{ mentioned_user_group_name }} was mentioned.{% endtrans %}
|
2023-06-07 19:19:33 +02:00
|
|
|
{% elif topic_wildcard_mentioned_in_followed_topic %}
|
|
|
|
{% trans %}You are receiving this because all topic participants were mentioned in #{{ stream_name }} > {{ topic_name }}.{% endtrans %}
|
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 %}
|
2023-06-07 19:19:33 +02:00
|
|
|
{% elif topic_wildcard_mentioned %}
|
|
|
|
{% trans %}You are receiving this because all topic participants were mentioned in #{{ stream_name }} > {{ topic_name }}.{% endtrans %}
|
2023-06-03 16:51:38 +02:00
|
|
|
{% elif stream_wildcard_mentioned %}
|
2023-06-22 06:32:32 +02:00
|
|
|
{% trans %}You are receiving this because everyone was mentioned in #{{ stream_name }}.{% endtrans %}
|
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 %}
|
2023-06-22 06:32:32 +02:00
|
|
|
{% elif stream_email_notify %}
|
|
|
|
{% trans %}You are receiving this because you have email notifications enabled for #{{ stream_name }}.{% endtrans %}
|
2019-07-08 08:02:17 +02:00
|
|
|
{% endif %}
|
|
|
|
|
2019-06-18 14:15:23 +02:00
|
|
|
{% if reply_to_zulip %}
|
2022-09-29 10:05:54 +02:00
|
|
|
{% trans %}Reply to this email directly, or view it in {{ realm_name }} Zulip:{% endtrans %}
|
2020-04-24 19:46:52 +02:00
|
|
|
|
2019-06-18 14:15:23 +02:00
|
|
|
{{ narrow_url }}
|
2020-01-31 12:55:47 +01:00
|
|
|
{% elif not show_message_content %}
|
2022-09-29 10:05:54 +02:00
|
|
|
{% trans %}View or reply in {{ realm_name }} Zulip:{% endtrans %}
|
2020-04-24 19:46:52 +02:00
|
|
|
|
2020-01-31 12:55:47 +01:00
|
|
|
{{ narrow_url }}
|
2019-06-18 14:15:23 +02:00
|
|
|
{% else %}
|
2022-09-29 10:05:54 +02:00
|
|
|
{% trans %}Reply in {{ realm_name }} Zulip:{% endtrans %}
|
2020-04-24 19:46:52 +02:00
|
|
|
|
2019-07-20 02:16:17 +02:00
|
|
|
{{ narrow_url }}
|
|
|
|
|
2020-04-24 19:46:52 +02:00
|
|
|
{% trans %}
|
2020-01-31 14:38:57 +01:00
|
|
|
Do not reply to this email. This Zulip server is not configured to accept
|
2019-06-18 14:15:23 +02:00
|
|
|
incoming emails. Help:
|
2020-04-24 19:46:52 +02:00
|
|
|
{% endtrans %}
|
2019-07-10 00:02:05 +02:00
|
|
|
https://zulip.readthedocs.io/en/latest/production/email-gateway.html
|
2019-06-18 14:15:23 +02:00
|
|
|
{% endif %}
|
2019-07-20 02:16:17 +02:00
|
|
|
|
2020-04-24 19:46:52 +02:00
|
|
|
{% trans %}Manage email preferences: {% endtrans %}
|
|
|
|
|
2019-07-20 02:16:17 +02:00
|
|
|
{{ realm_uri }}/#settings/notifications
|