开启163的smtp服务器(绑定自己的手机)
163邮箱地址:https://mail.163.com/
记住自己的SMTP服务器
Smtp服务器地址 和 端口
Ssl: smtp.163.com:465
非ssl : smtp.163.com:25
#coding:utf -8
import smtplib #smtp服务器
from email.mime.text import MIMEText #邮件文本
#邮件构建
subject = "滴滴答答"#邮件标题
sender = "*********@163.com"#发送方
content = "新年快乐!"
recver = "*******@qq.com"#接收方
password = "*****"邮箱密码
message = MIMEText(content,"plain","utf-8")
#content 发送内容 "plain"文本格式 utf-8 编码格式
message['Subject'] = subject #邮件标题
message['To'] = recver #收件人
message['From'] = sender #发件人
smtp = smtplib.SMTP_SSL("smtp.163.com",994) #实例化smtp服务器
smtp.login(sender,password)#发件人登录
smtp.sendmail(sender,[recver],message.as_string()) #as_string 对 message 的消息进行了封装
smtp.close()