Fix requests not being sent to the Cc recipients

Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
Frederik Schwan 2020-10-14 02:22:08 +02:00 committed by Lukas Fleischer
parent 613364b773
commit d5e308550a

View file

@ -118,7 +118,7 @@ class Notification:
server.set_debuglevel(0) server.set_debuglevel(0)
deliver_to = [to] + self.get_cc() deliver_to = [to] + self.get_cc()
server.sendmail(sender, to, msg.as_bytes()) server.sendmail(sender, deliver_to, msg.as_bytes())
server.quit() server.quit()