mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
mail_bcc: Add comma-separation hint
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user