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