From: Yasin Date: Tue, 29 Jul 2014 14:17:02 +0000 (+0200) Subject: contact view: made default recipients dynamic based on templates X-Git-Tag: myslice-1.0~35^2~1 X-Git-Url: http://git.onelab.eu/?p=myslice.git;a=commitdiff_plain;h=f2119c1c9f52fe5c4adf923b4d843517ec527ea0 contact view: made default recipients dynamic based on templates --- 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: diff --git a/portal/forms.py b/portal/forms.py index 683cffbb..67e02a12 100644 --- a/portal/forms.py +++ b/portal/forms.py @@ -94,7 +94,7 @@ class ContactForm(forms.Form): regex=r'^[\w+\s\w+]+$', label=_("description"), error_messages={'invalid': _("This value may contain only letters, numbers and @/./+/-/_ characters.")}) - cc_myself = forms.BooleanField(required=False,widget=forms.CheckboxInput(attrs={'class':'form-control'})) + #cc_myself = forms.BooleanField(required=False,widget=forms.CheckboxInput(attrs={'class':'form-control'})) class PassResetForm(forms.Form): email = forms.EmailField(widget=forms.TextInput(attrs={'class':'form-control'})) diff --git a/portal/templates/email_default_recipients.txt b/portal/templates/email_default_recipients.txt index fb49ee96..c0f206f3 100644 --- a/portal/templates/email_default_recipients.txt +++ b/portal/templates/email_default_recipients.txt @@ -1 +1 @@ -support@myslice.info +support@onelab.eu