Added a setting for an e-mail subject prefix

This commit is contained in:
Raphael Michel
2015-06-16 20:09:10 +02:00
parent 35f5263430
commit 879384f357
4 changed files with 16 additions and 1 deletions

View File

@@ -151,6 +151,11 @@ class EventSettingsForm(SettingsForm):
required=False,
help_text=_("Public email address for contacting the organizer")
)
mail_prefix = forms.CharField(
label=_("Subject prefix"),
help_text=_("This will be prepended to the subject of all outgoing emails. This could be a short form of "
"your event name.")
)
mail_from = forms.EmailField(
label=_("Sender address"),
help_text=_("Sender address for outgoing e-mails")