您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

Python利用QQ邮箱发送邮件的实现方法(分享)

5b51 2022/1/14 8:17:00 python 字数 2631 阅读 318 来源 www.jb51.cc/python

废话不多说,直接上代码 Python2.7 #!/usr/bin/envpython2.7 #-*-coding=utf-8-*- importsmtplib fromemail.mime.textimportMIMEText

概述

废话不多说,直接上代码

Python2.7

#!/usr/bin/env python2.7
# -*- coding=utf-8 -*-

import smtplib
from email.mime.text import MIMEText
_user = "648613081@qq.com"
_pwd = "这里改成你的授权码"
_to  = "648613081@qq.com"

msg = MIMEText("this is a email from python,ha ha ha ...")
msg["Subject"] = "这里是主题"
msg["From"] = _user
msg["To"] = _to

try:
  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 smtplib
from email.mime.text import MIMEText
_user = "648613081@qq.com"
_pwd = "这里改成你的授权码"
_to  = "648613081@qq.com"

msg = MIMEText("this is a email from python,msg.as_string())
  s.quit()
  print ("发送成功")
except (s.smtplib.SMTPException,e):
  print ("发送失败")

以上这篇Python利用QQ邮箱发送邮件实现方法(分享)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程小技巧。

总结

以上是编程之家为你收集整理的Python利用QQ邮箱发送邮件的实现方法(分享)全部内容,希望文章能够帮你解决Python利用QQ邮箱发送邮件的实现方法(分享)所遇到的程序开发问题。


如果您也喜欢它,动动您的小指点个赞吧

除非注明,文章均由 laddyq.com 整理发布,欢迎转载。

转载请注明:
链接:http://laddyq.com
来源:laddyq.com
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。


联系我
置顶