forked from CGM_Public/pretix_original
mail_bcc: Add comma-separation hint
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user