增加邮箱 ssl 支持 #33

This commit is contained in:
Jalin
2019-01-15 23:24:17 +08:00
parent d98c98069a
commit 45ce85afde

View File

@@ -90,6 +90,8 @@ class Notification():
try:
server = smtplib.SMTP(Config().EMAIL_SERVER_HOST)
server.login(Config().EMAIL_SERVER_USER, Config().EMAIL_SERVER_PASSWORD)
server.ehlo()
server.starttls()
server.send_message(message)
server.quit()
CommonLog.add_quick_log(CommonLog.MESSAGE_SEND_EMAIL_SUCCESS).flush()