python 3.6.3 , 使用QQ 邮箱发送邮件

示例代码:

    

#coding=utf-8
import smtplib
from email.mime.text import MIMEText

msg_from='[email protected]'
passwd='*****'   #此处不是qq密码,是申请开通POP3/SMTP 服务时,提供的授权码
msg_to='[email protected]'
                            
subject = "python邮件测试" 
content = "这是我使用python smtplib及email模块发送的邮件"

msg = MIMEText(content)
msg['Subject'] = subject
msg['From'] = msg_from
msg['To'] = msg_to
#try:
s = smtplib.SMTP_SSL("smtp.qq.com",465)
s.login(msg_from, passwd)
s.sendmail(msg_from, msg_to, msg.as_string())
print ("发送成功")


 
 






猜你喜欢

转载自blog.csdn.net/wjunsing/article/details/80022382