diff --git a/datacenterlight/templates/datacenterlight/emails/new_order_notification.html b/datacenterlight/templates/datacenterlight/emails/new_order_notification.html
deleted file mode 100644
index 5f14c983..00000000
--- a/datacenterlight/templates/datacenterlight/emails/new_order_notification.html
+++ /dev/null
@@ -1,137 +0,0 @@
-{% load static from staticfiles %}
-
-
-
-
-
-
-Oxygen Invoice
-
-
-
-
-
-
-
-
-
- |
-
-
-
-
-
-
-
-
-
-
-
- User details
- Name: {{name}}
- Email: {{email}}
-
- VM details
- Cores: {{cores}}
- Memory: {{memory}}
- Storage: {{storage}}
- Price: {{price}}
- Template: {{template}}
-
- |
-
-
- |
-
-
-
- |
-
-
-
-
-
-Your data center light team
- |
-
-
- |
-
-
-
-
-
diff --git a/datacenterlight/templates/datacenterlight/emails/new_order_notification.txt b/datacenterlight/templates/datacenterlight/emails/new_order_notification.txt
deleted file mode 100644
index 5f14c983..00000000
--- a/datacenterlight/templates/datacenterlight/emails/new_order_notification.txt
+++ /dev/null
@@ -1,137 +0,0 @@
-{% load static from staticfiles %}
-
-
-
-
-
-
-Oxygen Invoice
-
-
-
-
-
-
-
-
-
- |
-
-
-
-
-
-
-
-
-
-
-
- User details
- Name: {{name}}
- Email: {{email}}
-
- VM details
- Cores: {{cores}}
- Memory: {{memory}}
- Storage: {{storage}}
- Price: {{price}}
- Template: {{template}}
-
- |
-
-
- |
-
-
-
- |
-
-
-
-
-
-Your data center light team
- |
-
-
- |
-
-
-
-
-
diff --git a/datacenterlight/views.py b/datacenterlight/views.py
index 80b608a4..f0ef1852 100644
--- a/datacenterlight/views.py
+++ b/datacenterlight/views.py
@@ -4,6 +4,7 @@ from .forms import BetaAccessForm
from .models import BetaAccess, BetaAccessVMType, BetaAccessVM
from django.contrib import messages
from django.core.urlresolvers import reverse_lazy, reverse
+from django.core.mail import EmailMessage
from utils.mailer import BaseEmail
from django.shortcuts import render
from django.shortcuts import redirect
@@ -59,7 +60,7 @@ class PricingView(TemplateView):
if not request.user.is_authenticated():
request.session['next'] = reverse('hosting:payment')
- request.session['specs'] = {
+ request.session['specs'] = {
'cpu':cores,
'memory': memory,
'disk_size': storage,
@@ -101,7 +102,7 @@ class OrderView(TemplateView):
manager = OpenNebulaManager()
template = manager.get_template(template_id)
template_data = VirtualMachineTemplateSerializer(template).data
-
+
name = request.POST.get('name')
email = request.POST.get('email')
name_field = forms.CharField()
@@ -112,17 +113,13 @@ class OrderView(TemplateView):
messages.add_message(self.request, messages.ERROR, '%(value) is not a proper name.'.format(name))
return HttpResponseRedirect(reverse('datacenterlight:order'))
- try:
+ try:
email = email_field.clean(email)
except ValidationError as err:
messages.add_message(self.request, messages.ERROR, '%(value) is not a proper email.'.format(email))
return HttpResponseRedirect(reverse('datacenterlight:order'))
-
- # We have valid email and name of the customer, hence send an
- # email to the admin
-
+
context = {
- 'base_url': "{0}://{1}".format(self.request.scheme, self.request.get_host()),
'name': name,
'email': email,
'cores': cores,
@@ -132,13 +129,12 @@ class OrderView(TemplateView):
'template': template_data['name'],
}
email_data = {
- 'subject': 'New Order Received',
- 'to': 'info@ungleich.ch',
- 'context': context,
- 'template_name': 'new_order_notification',
- 'template_path': 'datacenterlight/emails/'
+ 'subject': "Data Center Light Order from %s" % context['email'],
+ 'to': ['info@ungleich.ch'],
+ 'body': "\n".join(["%s=%s" % (k, v) for (k, v) in context.items()]),
+ 'reply_to': [context['email']],
}
- email = BaseEmail(**email_data)
+ email = EmailMessage(**email_data)
email.send()
return HttpResponseRedirect(reverse('datacenterlight:order_success'))
@@ -284,7 +280,6 @@ class IndexView(CreateView):
return HttpResponseRedirect(reverse('datacenterlight:order'))
context = {
- 'base_url': "{0}://{1}".format(self.request.scheme, self.request.get_host()),
'name': name,
'email': email,
'cores': cores,
@@ -294,14 +289,13 @@ class IndexView(CreateView):
'template': template_data['name'],
}
email_data = {
- 'subject': 'New Order Received',
- 'to': 'info@ungleich.ch',
- 'context': context,
- 'template_name': 'new_order_notification',
- 'template_path': 'datacenterlight/emails/'
+ 'subject': "Data Center Light Order from %s" % context['email'],
+ 'to': ['info@ungleich.ch'],
+ 'body': "\n".join(["%s=%s" % (k, v) for (k, v) in context.items()]),
+ 'reply_to': [context['email']],
}
- email = BaseEmail(**email_data)
- email.send()
+ email = EmailMessage(**email_data)
+ email.send()
return HttpResponseRedirect(reverse('datacenterlight:order_success'))