mail_bcc: Add comma-separation hint

This commit is contained in:
Martin Gross
2025-07-02 15:08:25 +02:00
parent 7177ac18f7
commit 25cd84c459
2 changed files with 8 additions and 2 deletions

View File

@@ -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