Commit 45ce85af authored by Jalin's avatar Jalin

增加邮箱 ssl 支持 #33

parent d98c9806
...@@ -90,6 +90,8 @@ class Notification(): ...@@ -90,6 +90,8 @@ class Notification():
try: try:
server = smtplib.SMTP(Config().EMAIL_SERVER_HOST) server = smtplib.SMTP(Config().EMAIL_SERVER_HOST)
server.login(Config().EMAIL_SERVER_USER, Config().EMAIL_SERVER_PASSWORD) server.login(Config().EMAIL_SERVER_USER, Config().EMAIL_SERVER_PASSWORD)
server.ehlo()
server.starttls()
server.send_message(message) server.send_message(message)
server.quit() server.quit()
CommonLog.add_quick_log(CommonLog.MESSAGE_SEND_EMAIL_SUCCESS).flush() CommonLog.add_quick_log(CommonLog.MESSAGE_SEND_EMAIL_SUCCESS).flush()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment