korektury | neposilej autorovy textu e-mail

This commit is contained in:
Bc. Petr Pecha 2016-10-04 19:51:50 +02:00
parent 7b44da7738
commit a151044049

View file

@ -136,9 +136,6 @@ class KorekturyView(generic.TemplateView):
# Prijemci e-mailu
emails = set()
email = oprava.autor.user.email
# e-mail autora opravy (TODO odstranit z prijemcu)
if email:
emails.add(email)
# nalezeni e-mailu na organizatory komentaru
for komentar in oprava.komentar_set.all():
email = komentar.autor.user.email
@ -149,6 +146,9 @@ class KorekturyView(generic.TemplateView):
email_zobpovedny = oprava.pdf.org.user.email
if email_zobpovedny:
emails.add(email_zobpovedny)
# odstran e-mail autora opravy
if email:
emails.discard(email)
send_mail(subject, text, from_email, list(emails))