X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/caeac0d2d5df635b21719c5e5db1980532537464..7edb0afe91b952c10f4a4f9c196e0e048be16986:/contact/forms.py diff --git a/contact/forms.py b/contact/forms.py index 6bb49fe..419540a 100644 --- a/contact/forms.py +++ b/contact/forms.py @@ -34,6 +34,7 @@ class ContactForm(forms.Form): submit_label = _('Submit') admin_list = None notify_on_register = True + notify_user = True required_css_class = 'required' contact = forms.EmailField(label=_('E-mail'), max_length=128) @@ -93,17 +94,18 @@ class ContactForm(forms.Form): except ValidationError: pass else: - mail_subject = render_to_string([ - 'contact/%s/mail_subject.txt' % self.form_tag, - 'contact/mail_subject.txt', - ], dictionary, context).strip() - mail_body = render_to_string([ - 'contact/%s/mail_body.txt' % self.form_tag, - 'contact/mail_body.txt', - ], dictionary, context) - send_mail(mail_subject, mail_body, - 'no-reply@%s' % site.domain, - [contact.contact], - fail_silently=True) + if self.notify_user: + mail_subject = render_to_string([ + 'contact/%s/mail_subject.txt' % self.form_tag, + 'contact/mail_subject.txt', + ], dictionary, context).strip() + mail_body = render_to_string([ + 'contact/%s/mail_body.txt' % self.form_tag, + 'contact/mail_body.txt', + ], dictionary, context) + send_mail(mail_subject, mail_body, + 'no-reply@%s' % site.domain, + [contact.contact], + fail_silently=True) return contact