change logging of email notifications

This commit is contained in:
2021-10-04 19:23:23 +02:00
parent c76c9aee11
commit 540bfabef4

View File

@@ -254,7 +254,7 @@ class EMailNotification(BaseNotification):
# sending email notifications # sending email notifications
for recipient in recipients: for recipient in recipients:
logger.debug( logger.debug(
f"generating notification email for '{recipient}'") f"generating email notification for '{recipient}'")
logger.debug("parsing email template") logger.debug("parsing email template")
# generate dict containing all template variables # generate dict containing all template variables
@@ -291,7 +291,7 @@ class EMailNotification(BaseNotification):
logger.debug("attaching imgage") logger.debug("attaching imgage")
newmsg.attach(img) newmsg.attach(img)
logger.debug(f"sending notification email to: {recipient}") logger.debug(f"sending email notification to: {recipient}")
if synchronous: if synchronous:
try: try:
mailer.smtp_send(self.smtp_host, self.smtp_port, mailer.smtp_send(self.smtp_host, self.smtp_port,
@@ -303,7 +303,7 @@ class EMailNotification(BaseNotification):
else: else:
mailer.sendmail(self.smtp_host, self.smtp_port, qid, mailer.sendmail(self.smtp_host, self.smtp_port, qid,
self.mailfrom, recipient, newmsg.as_string(), self.mailfrom, recipient, newmsg.as_string(),
"notification email") "email notification")
def execute(self, milter, logger): def execute(self, milter, logger):
super().execute(milter, logger) super().execute(milter, logger)