mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
send_email: Update 'from_name' for non user-facing emails.
This commit performs a minor update in 'from_name' text for 'support' and 'sponsorship' emails. Removes capitalization and adds a comment specifying that the emails are not user-facing.
This commit is contained in:
committed by
Tim Abbott
parent
78a75ab28c
commit
44d8dc66d2
@@ -41,11 +41,11 @@ def support_request(request: HttpRequest) -> HttpResponse:
|
||||
"support_url": get_support_url(user.realm),
|
||||
"user_role": user.get_role_name(),
|
||||
}
|
||||
|
||||
# Sent to the server's support team, so this email is not user-facing.
|
||||
send_email(
|
||||
"zerver/emails/support_request",
|
||||
to_emails=[FromAddress.SUPPORT],
|
||||
from_name="Zulip Support",
|
||||
from_name="Zulip support request",
|
||||
from_address=FromAddress.tokenized_no_reply_address(),
|
||||
reply_to_email=user.delivery_email,
|
||||
context=email_context,
|
||||
|
||||
Reference in New Issue
Block a user