mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 21:13:36 +00:00
In #23380 we want to change all ocurrences of `uri` to `url`. This commit changes the ocurrences of `uri` appeared in files related to email, including templates (`.html`, `.txt`) and backend (`.py`) codes. In `email.md`, `base_images_uri` is changed to `images_base_url` - the words `base` and `images` are swapped and plural form is added for `image`. This is becasue the former is not found anywhere in the codebase while the later appears a lot. To reduce confusion, this doccumentation changed accordingly.
17 lines
577 B
HTML
17 lines
577 B
HTML
{% extends "zerver/emails/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_url }}/email_logo.png" alt=""/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>{{ _("Hi,") }}</p>
|
|
<p>
|
|
{% trans new_email=macros.email_tag(new_email), support_email=macros.email_tag(support_email) %}The email associated with your Zulip account was recently changed to {{ new_email }}. If you did not request this change, please contact us immediately at {{ support_email }}.{% endtrans %}
|
|
</p>
|
|
<p>
|
|
{{ _("Best,") }}<br />
|
|
{{ _("Team Zulip") }}
|
|
</p>
|
|
{% endblock %}
|