mirror of https://github.com/zulip/zulip.git
find_accounts: Thank the user for their request in the email.
A recent commit removed the "Thanks for you request!" at the start of the find accounts email. As Alya Abbott pointed out, this line actually helps us point out to the user that they are the ones who requested the email in the first place, lowering the chances that they'll misinterpret it as spam. This is a follow-up to issue #19659.
This commit is contained in:
parent
2f993f1a79
commit
b43852953b
|
@ -5,6 +5,8 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<p>{{ _("Thanks for your request!") }}</p>
|
||||
|
||||
<p>{% trans %}Your email address {{ email }} has accounts with the following Zulip organizations hosted by <a href="{{ external_host }}">{{ external_host }}</a>:{% endtrans %}</p>
|
||||
|
||||
<ul>
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
{{ _("Thanks for your request!") }}
|
||||
|
||||
{% trans -%}
|
||||
Your email address {{ email }} has accounts with the following Zulip organizations hosted by {{ external_host }}:
|
||||
{%- endtrans %}
|
||||
|
|
Loading…
Reference in New Issue