This is an automated email from the ASF dual-hosted git repository. wave pushed a commit to branch update-email-alert-messages in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git
commit 1a4cfdd7814d803437505575b4bc139b5856c834 Author: Dave Fisher <[email protected]> AuthorDate: Thu Mar 5 14:45:22 2026 -0800 Make token change emails more clear --- atr/storage/writers/tokens.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/atr/storage/writers/tokens.py b/atr/storage/writers/tokens.py index 73d8e109..4bd89bf4 100644 --- a/atr/storage/writers/tokens.py +++ b/atr/storage/writers/tokens.py @@ -79,8 +79,8 @@ class FoundationCommitter(GeneralPublic): message = mail.Message( email_sender=NOREPLY_EMAIL_ADDRESS, email_recipient=f"{self.__asf_uid}@apache.org", - subject="New API Token Created", - body=f"A new API token called '{label}' was created for your account. " + subject="ATR - New API Token Created", + body=f"In ATR a new API token called '{label}' was created for your account. " "If you did not create this token, please revoke it immediately.", ) await self.__write_as.mail.send(message) @@ -104,8 +104,8 @@ class FoundationCommitter(GeneralPublic): message = mail.Message( email_sender=NOREPLY_EMAIL_ADDRESS, email_recipient=f"{self.__asf_uid}@apache.org", - subject="Deleted API Token", - body=f"An API token called '{label}' was deleted from your account. " + subject="ATR - Deleted API Token", + body=f"In ATR an API token called '{label}' was deleted from your account. " "If you did not delete this token, please check your account immediately.", ) await self.__write_as.mail.send(message) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
