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