From 1a7615dc9a426c9a267060bcbe56cfa4a3e2e276 Mon Sep 17 00:00:00 2001 From: "M.Ravi" Date: Tue, 13 Jun 2017 05:03:46 +0530 Subject: [PATCH] Fixed a typo --- datacenterlight/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datacenterlight/views.py b/datacenterlight/views.py index 81a38241..cf3405e4 100644 --- a/datacenterlight/views.py +++ b/datacenterlight/views.py @@ -295,7 +295,7 @@ class IndexView(CreateView): } email_data = { 'subject': "Data Center Light Order from %s" % context['email'], - 'from_address': '(datacenterlight) datacenterlight Support ', + 'from_email': '(datacenterlight) datacenterlight Support ', 'to': ['info@ungleich.ch'], 'body': "\n".join(["%s=%s" % (k, v) for (k, v) in context.items()]), 'reply_to': [context['email']],