From c1874b73e6a7935fe100d685ce2ea6d1062205b7 Mon Sep 17 00:00:00 2001 From: Maciej Pienczyn Date: Wed, 14 Jan 2026 09:46:26 +0100 Subject: [PATCH] fix: Change email sender display name to "Norda Biznes Hub" Previously showed "InPi Notifications" which was confusing. Now emails will display as "Norda Biznes Hub " Co-Authored-By: Claude Opus 4.5 --- email_service.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/email_service.py b/email_service.py index 7dcf527..fc44097 100644 --- a/email_service.py +++ b/email_service.py @@ -131,6 +131,9 @@ class EmailService: content = body_text # Build email message + # Display name for sender - shown in email clients + sender_display_name = "Norda Biznes Hub" + email_msg = { "message": { "subject": subject, @@ -141,7 +144,8 @@ class EmailService: "toRecipients": recipients, "from": { "emailAddress": { - "address": sender + "address": sender, + "name": sender_display_name } } },