Change datacenterlight.ch message form to send email to support@ungleich.ch

This commit is contained in:
aatish 2018-11-11 17:01:19 +01:00
parent 2c674572c9
commit 1bfb710ee6
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class ContactUsView(FormView):
sender=form.cleaned_data.get('email')
),
'from_email': settings.DCL_SUPPORT_FROM_ADDRESS,
'to': [from_emails.get(from_page, 'info@ungleich.ch')],
'to': [from_emails.get(from_page, 'support@ungleich.ch')],
'body': "\n".join(
["%s=%s" % (k, v) for (k, v) in form.cleaned_data.items()]),
'reply_to': [form.cleaned_data.get('email')],