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 <noreply@inpi.pl>"

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-01-14 09:46:26 +01:00
parent a09203ef55
commit c1874b73e6

View File

@ -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
}
}
},