Contactview: Fix sending email
[unfold.git] / portal / contactview.py
1 from django.shortcuts           import render
2 from django.template.loader     import render_to_string
3 from django.views.generic       import View
4
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
9
10 from myslice.theme import ThemeView
11 theme = ThemeView()
12
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']
28
29             #try:
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             #if cc_myself:
35             #    recipients.append(email)
36             recipients = ['support@myslice.info']
37             theme.template_name = 'contact_support_email.html'
38             html_content = render_to_string(theme.template, form.cleaned_data)
39         
40             theme.template_name = 'contact_support_email.txt'
41             text_content = render_to_string(theme.template, form.cleaned_data)
42         
43             theme.template_name = 'contact_support_email_subject.txt'
44             subject = render_to_string(theme.template, form.cleaned_data)
45             subject = subject.replace('\n', '')
46         
47             #    if not email:
48             #        theme.template_name = 'email_default_sender.txt'
49             #        sender =  render_to_string(theme.template, form.cleaned_data)
50             #        sender = sender.replace('\n', '')
51             #    else:
52             sender = email
53         
54             msg = EmailMultiAlternatives(subject, text_content, sender, recipients)
55             msg.attach_alternative(html_content, "text/html")
56             msg.send()
57             #except Exception, e:
58                 #print "Failed to send email, please check the mail templates and the SMTP configuration of your server"
59
60             if request.user.is_authenticated() :
61                 username = request.user.email
62             else :
63                 username = None
64             return render(request,'contact_sent.html', { 'theme' : self.theme,  'username': username}) # Redirect after POST
65         else:
66             return self._display (request, form)
67
68     def get (self, request):
69         return self._display (request, ContactForm()) # A fresh unbound form
70         
71     def _display (self, request, form):
72         if request.user.is_authenticated() :
73             username = request.user.email
74         else :
75             username = None
76         return render(request, 'contact.html', {
77                 'form': form,
78                 'topmenu_items': topmenu_items('Contact', request),
79                 'theme' : self.theme,
80                 'username': username,
81                 'section': "Contact"
82                 })