diff --git a/shelfzilla/apps/mailing/models.py b/shelfzilla/apps/mailing/models.py index eb9313b..61c69e6 100644 --- a/shelfzilla/apps/mailing/models.py +++ b/shelfzilla/apps/mailing/models.py @@ -17,7 +17,7 @@ class Email(object): text = '' def __init__(self, context={}): - self.form_email = getattr(settings, 'FROM_EMAIL', 'root@localhost') + self.from_email = getattr(settings, 'FROM_EMAIL', 'root@localhost') self.context = context self.prepare()