Browse Source

korektury | neposilej autorovy textu e-mail

remotes/origin/posli-mail-autorovi-korektury
Bc. Petr Pecha 8 years ago
parent
commit
a151044049
  1. 6
      korektury/views.py

6
korektury/views.py

@ -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))

Loading…
Cancel
Save