2021-08-02 06:11:36 +02:00
|
|
|
{% extends "zerver/emails/compiled/email_base_marketing.html" %}
|
2019-11-19 02:27:12 +01:00
|
|
|
|
|
|
|
{% block illustration %}
|
2020-01-24 08:30:26 +01:00
|
|
|
<img src="{{ email_images_base_uri }}/email_logo.png" alt=""/>
|
2019-11-19 02:27:12 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
{# Note: The below code is substituted by `manage.py send_custom_email` #}
|
|
|
|
{{ rendered_input }}
|
|
|
|
|
|
|
|
{% endblock %}
|
2021-04-28 00:58:31 +02:00
|
|
|
|
|
|
|
{% block manage_preferences %}
|
2021-12-15 02:09:12 +01:00
|
|
|
{% if remote_server_email %}
|
|
|
|
<p>You are receiving this email to update you about important changes to Zulip's Terms of Service.</p>
|
|
|
|
{% else %}
|
|
|
|
<p><a href="{{ realm_uri }}/#settings/notifications">{{ _("Manage email preferences") }}</a> | <a href="{{ unsubscribe_link }}">{{ _("Unsubscribe from marketing emails") }}</a></p>
|
|
|
|
{% endif %}
|
2021-04-28 00:58:31 +02:00
|
|
|
{% endblock %}
|