Add bcc option for event emails

This commit is contained in:
Raphael Michel
2018-06-22 13:28:54 +02:00
parent 28f6f09e8f
commit 5e7027647a
4 changed files with 14 additions and 0 deletions

View File

@@ -663,6 +663,11 @@ class MailSettingsForm(SettingsForm):
label=_("Sender address"),
help_text=_("Sender address for outgoing emails")
)
mail_bcc = forms.EmailField(
label=_("Bcc address"),
help_text=_("All emails will be sent to this address as a Bcc copy"),
required=False
)
mail_text_signature = I18nFormField(
label=_("Signature"),