Python使用QQ邮箱发送Email的方法实例

作者:leetao94 时间:2021-03-25 11:33:57 

前言

其实Python使用QQ邮箱发送Email代码很简单,短短几行代码就可以实现这个功能。

使用到的模块有smtplib和email这个两个模块,关于这两个模块的方法就不多说了。不了解的朋友们可以查看这篇文章:python中使用smtplib和email模块发送邮件实例

我们先说说网上常用的使用这那两个模块发送邮件的方法

代码如下:


import smtplib
from email.mime.text import MIMEText
from email.header import Header

def SendEmail(fromAdd, toAdd, subject, attachfile, htmlText):
strFrom = fromAdd;
strTo = toAdd;
msg =MIMEText(htmlText);
msg['Content-Type'] = 'Text/HTML';
msg['Subject'] = Header(subject,'gb2312');
msg['To'] = strTo;
msg['From'] = strFrom;

smtp = smtplib.SMTP('smtp.qq.com');
smtp.login('501257367@qq.com','password');
try:
smtp.sendmail(strFrom,strTo,msg.as_string());
finally:
smtp.close;

if __name__ == "__main__":
SendEmail("501257367@qq.com","501257367@qq.com","","hello","hello world");

运行结果:


smtplib.SMTPAuthenticationError: (530, 'Error: A secure connection is requiered(such as ssl). More information at http://service.mail.qq.com/cgi-bin/help?id=28')

报错,需要一个安全的连接,例如SSL,因此接下来我们会使用SSL的方式去登录,但是在那之前,我们需要做一些准备,打开qq邮箱,点击设置->

账户,找到POP3/IMAP/SMTP/Exchange/CardDAV/CalDAV服务,开启IMAP/SMTP服务,然后根据要求使用手机发送到指定号码,获取授权码,

这个授权码就是你接下来登录要使用的密码,配置完成,上代码


import smtplib
from email.mime.text import MIMEText
_user = "你的qq邮箱"
_pwd = "你的授权码"
_to = "501257367@163.com"

msg = MIMEText("Test")
msg["Subject"] = "don't panic"
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 "Success!"
except smtplib.SMTPException,e:
print "Falied,%s"%e

运行结果如下:

Python使用QQ邮箱发送Email的方法实例

总结

好了,大功告成!以上就是这篇文章的全部内容了,希望本文的内容对大家学习或者使用python能带来一定的帮助,如果有疑问大家可以留言交流。

标签:python,qq邮箱,email
0
投稿

猜你喜欢

  • 功能强大,代码简单的管理菜单

    2008-07-11 16:52:00
  • SQL Server 2005中插入XML数据方法

    2008-05-26 11:56:00
  • 企业生产MySQL优化介绍

    2024-01-21 10:13:53
  • python中偏函数partial用法实例分析

    2021-03-24 21:35:23
  • Python中利用aiohttp制作异步爬虫及简单应用

    2023-07-21 04:50:40
  • pytorch创建tensor函数详情

    2021-10-30 15:09:56
  • Go语言中转换JSON数据简单例子

    2024-04-26 17:32:28
  • asp如何用SA-FileUp上传多个文件?

    2010-06-13 14:34:00
  • windows下python安装pip图文教程

    2023-11-18 19:27:20
  • Python之两种模式的生产者消费者模型详解

    2021-07-31 17:44:02
  • 基于python SMTP实现自动发送邮件教程解析

    2023-03-08 20:15:02
  • sql server自动生成拼音首字母的函数

    2024-01-25 15:27:19
  • chatGPT使用及注册过程中常见的一些错误解决方法(所有报错汇总)

    2023-03-02 22:27:23
  • Python实现多行注释的另类方法

    2021-04-28 21:49:12
  • 如何快速一次性卸载所有python包(第三方库)呢

    2022-08-18 12:12:58
  • pycharm新建一个python工程步骤

    2023-08-22 17:42:54
  • Python中用字符串调用函数或方法示例代码

    2023-03-05 15:37:59
  • golang 防缓存击穿singleflight的实现

    2024-05-09 09:55:23
  • 使用jupyter notebook运行python和R的步骤

    2023-03-30 18:22:50
  • JavaScript函数参数使用带参数名的方式赋值传入的方法

    2024-04-30 09:51:52
  • asp之家 网络编程 m.aspxhome.com