Python利用QQ邮箱发送邮件的实现方法(分享)
作者:jingxian 时间:2023-01-06 23:23:25
废话不多说,直接上代码
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,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 ("发送失败")
标签:python,发送邮件,qq邮箱
0
投稿
猜你喜欢
Python实现图片指定位置加图片水印(附Pyinstaller打包exe)
2023-08-13 04:27:16
详解Python 爬取13个旅游城市,告诉你五一大家最爱去哪玩?
2022-05-22 08:39:32
关于mysql基础知识的介绍
2024-01-18 10:57:28
python中if嵌套命令实例讲解
2022-03-11 21:52:51
详细解读tornado协程(coroutine)原理
2022-08-21 00:20:18
Python中移除List重复项的五种方法
2021-12-11 20:15:38
Pycharm 使用 Pipenv 新建的虚拟环境(图文详解)
2023-12-08 18:55:11
Python中正则表达式的详细教程
2023-07-14 23:53:14
GO语言实现简单的目录复制功能
2024-04-26 17:21:39
Python实现栈的方法详解【基于数组和单链表两种方法】
2022-06-05 19:03:47
Python实现mysql数据库中的SQL文件生成和导入
2024-01-22 01:04:41
数据仓库基本报表制作过程中的SQL写法
2008-11-25 12:17:00
Python爬取数据保存为Json格式的代码示例
2022-10-13 17:11:36
对pandas中iloc,loc取数据差别及按条件取值的方法详解
2021-06-15 01:58:05
Dephi逆向工具Dede导出函数名MAP导入到IDA中的实现方法
2023-04-09 06:31:40
Mysql权限管理grant命令使笔记
2024-01-18 02:08:28
用私有属性来拯救IE7缩放图片的失真
2009-03-03 13:57:00
浅谈使用Python变量时要避免的3个错误
2022-06-20 21:07:07
opencv与numpy的图像基本操作
2022-06-20 12:20:10
Sql Server 2000 一些安全设置
2008-02-13 18:57:00