From 25cd84c459cdd9d5acc9b2a66c739223c1df32d4 Mon Sep 17 00:00:00 2001 From: Martin Gross Date: Wed, 2 Jul 2025 15:08:25 +0200 Subject: [PATCH] mail_bcc: Add comma-separation hint --- src/pretix/control/forms/event.py | 5 ++++- src/pretix/control/forms/organizer.py | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py index ec4335d13..ffd1fbacd 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -984,7 +984,10 @@ class MailSettingsForm(FormPlaceholderMixin, SettingsForm): mail_bcc = forms.CharField( label=_("Bcc address"), - help_text=_("All emails will be sent to this address as a Bcc copy"), + help_text=' '.join([ + str(_("All emails will be sent to this address as a Bcc copy.")), + str(_("You can specify multiple recipients separated by commas.")), + ]), validators=[multimail_validate], required=False, max_length=255 diff --git a/src/pretix/control/forms/organizer.py b/src/pretix/control/forms/organizer.py index 688f66629..14814ce26 100644 --- a/src/pretix/control/forms/organizer.py +++ b/src/pretix/control/forms/organizer.py @@ -581,7 +581,10 @@ class MailSettingsForm(SettingsForm): mail_bcc = forms.CharField( label=_("Bcc address"), - help_text=_("All emails will be sent to this address as a Bcc copy"), + help_text=''.join([ + str(_("All emails will be sent to this address as a Bcc copy.")), + str(_("You can specify multiple recipients separated by commas.")), + ]), validators=[multimail_validate], required=False, max_length=255