Update smtp.py

This commit is contained in:
Einar Forselv 2019-12-04 20:31:41 +01:00
parent 6a3b06f371
commit 96889b02a9
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class SMTPAlert(BaseAlert):
server.ehlo()
server.login(self.user, self.password)
server.sendmail(self.user, self.to, msg.as_string())
logger.info('Email Sent')
logger.info('Email sent')
except Exception as ex:
logger.error(ex)
finally: