062自动发送邮件

# -*- coding:utf-8 -*-
# smtplib模块
# python内置对SMTP的支持,可以发送纯文本邮件、HTML邮件以及带附件的邮件
# python对SMTP支持有smtplib和email两个模块,email负责构造邮件,smtplib负责发送邮件
# 注意:使用前需要开启SMTP服务
# 案例:使用163邮箱来结合smtp模块发送邮件,准备工作:客户端授权码打开

import smtplib          #发送邮件模板
from email.mime.text import MIMEText  #定义邮件内容
from email.header import Header       #定义邮件标题
#发送邮箱服务器
smtpserver='smtp.163.com'
#发送邮箱用户名密码
user='[email protected]'
password='xxxx'                #邮箱的授权码
#发送和接收的邮箱
sender='[email protected]'
receive='[email protected]'
#发送邮件主题和内容
subject='webselenium自动化测试报告'
content='

我要好好学自动化!!!

' #HTML邮件正文 msg=MIMEText(content,'html','utf-8') msg['Subject']=Header(subject,'utf-8') msg['From']=sender msg['To']=receive #SSL协议端口号要使用465 smtp=smtplib.SMTP_SSL(smtpserver,465) #向服务器标识用户身份 smtp.helo(smtpserver) #服务器返回结果确认 smtp.ehlo(smtpserver) #登录邮箱服务器用户名和密码 smtp.login(user,password) print("开始发送邮件。。。") smtp.sendmail(sender,receive,msg.as_string()) #发送和接收的邮箱,msg[]字典 smtp.quit() print("邮件发送完成")

 

你可能感兴趣的:(062自动发送邮件)