smtplib发送带SSL认证的邮箱系统

应朋友需要,做一个能从excel读取 发送人 发送主题 发送内容的一个小工具

当前查阅了下 发送待SSL认证的邮箱系统,先实现发送邮件的方式,其余待后续开发:

代码正文如下(本代码主要基于腾讯企业邮箱进行验证,如果有问题,欢迎大家交流):


#-*- encoding: gb2312 -*-
import os, sys
import smtplib
from smtplib import SMTP_SSL
from email.header import Header
from email.mime.text import MIMEText


mailInfo = {
"from":"[email protected]",
"to": "[email protected]",
"hostname":"smtp.xx.com",
"username":"username",
"password":"xxxx",
"mailsubject":"tiltle",
"mailtext":"the email text ",
"mailencoding":"gb2312"
        }
       
if __name__ == '__main__':
smtp = SMTP_SSL(mailInfo["hostname"])
smtp.set_debuglevel(1)
smtp.ehlo(mailInfo["hostname"])
smtp.login(mailInfo["username"],mailInfo["password"])

msg = MIMEText(mailInfo["mailtext"],_subtype='plain',_charset=mailInfo["mailencoding"])  
msg["Subject"] = Header(mailInfo["mailsubject"],mailInfo["mailencoding"])
msg["from"] = mailInfo["from"]
msg["to"] = mailInfo["to"]
smtp.sendmail(mailInfo["from"], mailInfo["to"], msg.as_string())
smtp.quit()

你可能感兴趣的:(其他)