Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenmcd committed Apr 13, 2015
2 parents b9c65f3 + c45907d commit 0b003c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mezzanine/forms/models.py
Expand Up @@ -22,8 +22,8 @@ class Form(Page, RichText):
send_email = models.BooleanField(_("Send email to user"), default=True,
help_text=_("To send an email to the email address supplied in "
"the form upon submission, check this box."))
email_from = models.EmailField(_("From address"), blank=True,
help_text=_("The address the email will be sent from"))
email_from = models.EmailField(_("From address"), max_length=254,
help_text=_("The address the email will be sent from"), blank=True)
email_copies = models.CharField(_("Send email to others"), blank=True,
help_text=_("Provide a comma separated list of email addresses "
"to be notified upon form submission. Leave blank to "
Expand Down

0 comments on commit 0b003c2

Please sign in to comment.