Ai
1 Star 0 Fork 0

ChasGao/my_python_example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hellow_mail.py 374 Bytes
一键复制 编辑 原始数据 按行查看 历史
ChasGao 提交于 2019-12-30 09:41 +08:00 . 初始导入
from email.mime.text import MIMEText
msg = MIMEText('hello, send by Python...', 'plain', 'utf-8')
import smtplib
sever = smtplib.SMTP("smtp.qq.com", 25)
sever.set_debuglevel(1)
# QQ邮箱密码为开通的stmp服务后得到的客户端授权码
sever.login("3086816120@qq.com","")
sever.sendmail("3086816120@qq.com", ["gaochao@asiainfo.com"],msg.as_string())
sever.quit()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Chas/my_python_example.git
git@gitee.com:Chas/my_python_example.git
Chas
my_python_example
my_python_example
master

搜索帮助