X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/5d57db05564cb55a99f2088c50391296670ba8d6..afdd99a2a932f84fb4c64ac456eba7961904fdfb:/questions/models.py diff --git a/questions/models.py b/questions/models.py index 06addd3..b441a00 100644 --- a/questions/models.py +++ b/questions/models.py @@ -55,6 +55,24 @@ class Question(models.Model): msg.attach_alternative(html_content, "text/html") msg.send() + def ack_author(self): + if not self.email: + return + site = Site.objects.get_current() + context = Context({ + 'question': self, + 'site': site, + }) + text_content = loader.get_template('questions/ack_mail.txt' + ).render(context) + html_content = loader.get_template('questions/ack_mail.html' + ).render(context) + msg = EmailMultiAlternatives( + u'Twoje pytanie zostało zarejestrowane w serwisie %s.' % site.domain, + text_content, settings.SERVER_EMAIL, [self.email]) + msg.attach_alternative(html_content, "text/html") + msg.send() + def save(self, *args, **kwargs): now = datetime.now() notify = False