1 from django.shortcuts import render
2 from django.template.loader import render_to_string
3 from django.views.generic import View
5 from unfold.loginrequired import FreeAccessView
6 from ui.topmenu import topmenu_items, the_user
7 from django.core.mail import EmailMultiAlternatives, send_mail
8 from portal.forms import ContactForm
10 from myslice.theme import ThemeView
13 # splitting the 2 functions done here
14 # GET is for displaying the empty form
15 # POST is to process it once filled - or show the form again if anything is missing
16 class ContactView (FreeAccessView, ThemeView):
17 def post (self, request):
18 form = ContactForm(request.POST) # A form bound to the POST data
19 if form.is_valid(): # All validation rules pass
20 # Process the data in form.cleaned_data
21 first_name = form.cleaned_data['first_name']
22 last_name = form.cleaned_data['last_name']
23 authority = form.cleaned_data['authority']
24 subject = form.cleaned_data['subject']
25 description = form.cleaned_data['description']
26 email = form.cleaned_data['email'] # email of the sender
27 cc_myself = form.cleaned_data['cc_myself']
30 # Send an email: the support recipients
31 #theme.template_name = 'email_support.txt'
32 #recipients = render_to_string(theme.template, form.cleaned_data)
33 #recipients = subject.replace('\n', '')
34 recipients = ['support@myslice.info']
36 recipients.append(email)
37 #recipients = ['support@myslice.info']
38 theme.template_name = 'contact_support_email.html'
39 html_content = render_to_string(theme.template, form.cleaned_data)
41 theme.template_name = 'contact_support_email.txt'
42 text_content = render_to_string(theme.template, form.cleaned_data)
44 theme.template_name = 'contact_support_email_subject.txt'
45 subject = render_to_string(theme.template, form.cleaned_data)
46 subject = subject.replace('\n', '')
49 # theme.template_name = 'email_default_sender.txt'
50 # sender = render_to_string(theme.template, form.cleaned_data)
51 # sender = sender.replace('\n', '')
55 msg = EmailMultiAlternatives(subject, text_content, sender, recipients)
56 msg.attach_alternative(html_content, "text/html")
59 #print "Failed to send email, please check the mail templates and the SMTP configuration of your server"
61 if request.user.is_authenticated() :
62 username = request.user.email
65 return render(request,'contact_sent.html', { 'theme' : self.theme, 'username': username}) # Redirect after POST
67 return self._display (request, form)
69 def get (self, request):
70 return self._display (request, ContactForm()) # A fresh unbound form
72 def _display (self, request, form):
73 if request.user.is_authenticated() :
74 username = request.user.email
77 return render(request, 'contact.html', {
79 'topmenu_items': topmenu_items('Contact', request),