parent
5945271166
commit
58678b4504
|
@ -13,6 +13,10 @@ def send_mail(sender: str, recipient: str, subject: str, body: str) -> None:
|
||||||
smtp = smtplib.SMTP(
|
smtp = smtplib.SMTP(
|
||||||
config.config["smtp"]["host"], int(config.config["smtp"]["port"])
|
config.config["smtp"]["host"], int(config.config["smtp"]["port"])
|
||||||
)
|
)
|
||||||
|
try:
|
||||||
|
smtp.starttls()
|
||||||
|
except smtplib.SMTPNotSupportedError:
|
||||||
|
pass
|
||||||
smtp.login(config.config["smtp"]["user"], config.config["smtp"]["pass"])
|
smtp.login(config.config["smtp"]["user"], config.config["smtp"]["pass"])
|
||||||
smtp.send_message(msg)
|
smtp.send_message(msg)
|
||||||
smtp.quit()
|
smtp.quit()
|
||||||
|
|
Loading…
Reference in New Issue