X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fcontactview.py;h=b076cd98dab4c536c23dc123d7a1d1638fe8f27d;hb=f2119c1c9f52fe5c4adf923b4d843517ec527ea0;hp=482594e313f9e27183403e6bd166d0cd67f5ed11;hpb=d22c36263acb20d9f7a2f80832946c2503499476;p=unfold.git diff --git a/portal/contactview.py b/portal/contactview.py index 482594e3..b076cd98 100644 --- a/portal/contactview.py +++ b/portal/contactview.py @@ -28,16 +28,18 @@ class ContactView (FreeAccessView, ThemeView): subject = form.cleaned_data['subject'] description = form.cleaned_data['description'] email = form.cleaned_data['email'] # email of the sender - cc_myself = form.cleaned_data['cc_myself'] + #cc_myself = form.cleaned_data['cc_myself'] #try: # Send an email: the support recipients - #theme.template_name = 'email_support.txt' - #recipients = render_to_string(theme.template, form.cleaned_data) - #recipients = subject.replace('\n', '') - recipients = ['support@onelab.eu'] - if cc_myself: - recipients.append(email) + theme.template_name = 'email_default_recipients.txt' + recipients = render_to_string(theme.template, form.cleaned_data) + recipients = recipients.replace('\n', '') + #recipients = ['support@onelab.eu'] + ## removed it cz recipients is not a list so append doesn't work ### + ## we don't need it cz the new ticketing systems sends a confirmation email ### + #if cc_myself: + # recipients.append(email) #recipients = ['support@myslice.info'] theme.template_name = 'contact_support_email.html' html_content = render_to_string(theme.template, form.cleaned_data) @@ -56,7 +58,7 @@ class ContactView (FreeAccessView, ThemeView): # else: sender = email - msg = EmailMultiAlternatives(subject, text_content, sender, recipients) + msg = EmailMultiAlternatives(subject, text_content, sender, [recipients]) msg.attach_alternative(html_content, "text/html") msg.send() #except Exception, e: