python email smtplib模块发送邮件代码实例
2018-09-22 00:52
阅读:525
本例使用 QQ邮箱测试,需要打开 QQ邮箱的 smtp协议,获取授权码
代码内容如下:
#!/usr/bin/env python # _*_ coding:utf-8 _*_ __author__ = junxi import smtplib from email.mime.text import MIMEText # 文本模式 # msg = MIMEText(send by python..., plain, utf-8) # html 格式 msg = MIMEText(<html><body><h1>Hello</h1> + <p>send by <a href=是在QQ邮箱获取的授权码, 如果不需要授权的邮箱直接输入密码即可,[xinleixxxx@126.com],msg.as_string()) server.quit()
查看结果:
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python email smtplib模块发送邮件代码实例
文章链接:http://soscw.com/index.php/essay/16881.html
文章标题:python email smtplib模块发送邮件代码实例
文章链接:http://soscw.com/index.php/essay/16881.html
评论
亲,登录后才可以留言!