Python2.7
#!/usr/bin/env python2.7# -*- coding<a>本文来源gao($daima.com搞@代@#码(网</a>=utf-8 -*-import smtplibfrom email.mime.text import MIMEText_user = "[email protected]"_pwd = "这里改成你的授权码"_to = "[email protected]"msg = MIMEText("this is a email from python,ha ha ha ...")msg["Subject"] = "这里是主题"msg["From"] = _usermsg["To"] = _totry: s = smtplib.SMTP_SSL("smtp.qq.com", 465) s.login(_user, _pwd) s.sendmail(_user, _to, msg.as_string()) s.quit() print "发送成功"except s.smtplib.SMTPException, e: print "发送失败"
Python3.6
#!/usr/bin/env python3.6# -*- coding=utf-8 -*-import smtplibfrom email.mime.text import MIMEText_user = "[email protected]"_pwd = "这里改成你的授权码"_to = "[email protected]"msg = MIMEText("this is a email from python,ha ha ha ...")msg["Subject"] = "这里是主题"msg["From"] = _usermsg["To"] = _totry: s = smtplib.SMTP_SSL("smtp.qq.com", 465) s.login(_user, _pwd) s.sendmail(_user, _to, msg.as_string()) s.quit() print ("发送成功")except (s.smtplib.SMTPException, e): print ("发送失败")
以上就是Python用QQ邮箱发邮件的实例教程的详细内容,更多请关注搞代码gaodaima其它相关文章!