mirror of https://github.com/zulip/zulip.git
26 lines
651 B
HTML
26 lines
651 B
HTML
{% extends "zerver/emails/email_base_default.html" %}
|
|
|
|
{% block content %}
|
|
<p>Hi!
|
|
</p>
|
|
|
|
<p>
|
|
We received a request to change the email address for the Zulip
|
|
account on {{ realm.uri }} from {{ old_email }} to {{ new_email }}.
|
|
If you would like to confirm this change, please click this link:
|
|
<br />
|
|
<a href="{{ activate_url }}" style="color:#08c">{{ activate_url }}</a>
|
|
</p>
|
|
|
|
<p>
|
|
Feel free to give us a shout at
|
|
<a href="mailto:{{ support_email }}" style="color:#08c">{{ support_email }}</a>
|
|
if you have any questions or you did not request this change.
|
|
</p>
|
|
|
|
<p>
|
|
Cheers,<br />
|
|
The Zulip Team
|
|
</p>
|
|
{% endblock %}
|