forked from CGM_Public/pretix_original
mail_bcc: Add comma-separation hint
This commit is contained in:
@@ -984,7 +984,10 @@ class MailSettingsForm(FormPlaceholderMixin, SettingsForm):
|
|||||||
|
|
||||||
mail_bcc = forms.CharField(
|
mail_bcc = forms.CharField(
|
||||||
label=_("Bcc address"),
|
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],
|
validators=[multimail_validate],
|
||||||
required=False,
|
required=False,
|
||||||
max_length=255
|
max_length=255
|
||||||
|
|||||||
@@ -581,7 +581,10 @@ class MailSettingsForm(SettingsForm):
|
|||||||
|
|
||||||
mail_bcc = forms.CharField(
|
mail_bcc = forms.CharField(
|
||||||
label=_("Bcc address"),
|
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],
|
validators=[multimail_validate],
|
||||||
required=False,
|
required=False,
|
||||||
max_length=255
|
max_length=255
|
||||||
|
|||||||
Reference in New Issue
Block a user