美文网首页
python发送邮件

python发送邮件

作者: 移动端技术 | 来源:发表于2020-07-14 21:52 被阅读0次

    1、SMTP(Simple Mail Transfer Protocol)简单邮件传输协议
    一组由源地址发送到目的地址的传送邮件的规则。
    2、纯文本邮件的发送
    import smtplib # smtplib是对smtp的一种简单封装,在python中主要是基于smtplib模块实现的
    from email.mime.text import MIMEText #构建邮件的内容信息
    from email.header import Header #构建邮件的头部信息
    message=MIMEText(_text="邮件的内容",_subtype='plain',_charset="utf-8") #plain指的就是纯文本
    message["From"]=Header("发件人名称","utf-8")
    message["To"]=Header("收件人名称","utf-8")
    message["Subject"]=Header("邮件发送的标题","utf-8")
    smtpobj=smtplib.SMTP() #创建一个实例化对象
    try:

    连接smtp服务器

    mail_host="smtp.qq.com"  #以qq为例子:qq的第三方服务器地址是smtp.qq.com
                                          #如果发送163邮件,则第三方服务器地址应该是smtp.163.com以及对应的端口号
    smtpobj.connect(host=mail_host,port="587")
    

    获取授权码 :发送者邮件点击设置-账户-开启pop3/smtp协议 点击生成授权码

    用户登录,用户名为发送者地址,密码不是账号的密码,是授权码
    smtpobj.login(user="12345678@qq.com",password="生成的授权码")
    sender="12345678@qq.com"
    receiver=['87654321@qq.com'] #邮件可能会发给多个人,需要列表
    smtpobj.sendmail(sender,receiver,message.as_string()) #message.as_string()把message对象转化成字符串
    print("邮件发送成功")
    except smtplib.SMTPException:
    print("邮件发送失败!")
    3、html邮件的发送
    import smtplib
    from email.mime.text import MIMEText
    from email.header import Header
    实现文本邮件的发送,plain指的就是纯文本,html文件
    html="""<p> python邮件发送内容 </p>
    <p><a href="https://www.baidu.com">百度</a></p>
    """
    message=MIMEText(_text=html,_subtype='html',_charset="utf-8") #与纯文本邮件区别是subtype=html
    message["From"]=Header("发件人名称","utf-8")
    message["To"]=Header("收件人名称","utf-8")
    message["Subject"]=Header("标题名称","utf-8")
    smtpobj=smtplib.SMTP()
    mail_host="smtp.qq.com"
    try:
    smtpobj.connect(host=mail_host,port="587") #链接服务器
    smtpobj.login(user="12345678@qq.com",password="授权码") #用户登录
    sender="12345678@qq.com" #发送者邮箱
    receiver=['87654321@qq.com'] #接收者邮箱
    smtpobj.sendmail(sender,receiver,message.as_string()) #邮件发送
    print("邮件发送成功")
    except smtplib.SMTPException:
    print("邮件发送失败!") #邮件可以发送成功,邮件内容是个百度链接且可点击跳转
    4、发送带附件邮件
    import smtplib
    from email.header import Header
    from email.mime.text import MIMEText
    from email.mime.multipart import MIMEMultipart
    message=MIMEMultipart() #实例化
    message.attach(MIMEText('attach追加文本内容.',_subtype="plain",_charset="utf-8")) #在原来的文件内容上附加文本内容
    在原来的文件上追加附件
    att1=MIMEText(open('test.txt',"rb").read(),"base64","utf-8") #以二进制读的方式打开这个附件
    att1["Content-Type"] = 'application/octet-stream' #二进制流
    att1["Content-Disposition"] = 'attachment; filename="test.txt” # filename代表邮件中附件名称
    message.attach(att1) #将att1附件加进邮件中
    message["From"]=Header("发件人名称,"utf-8")
    message["To"]=Header(“收件人名称,"utf-8")
    message["Subject"]=Header("邮件名称“,“utf-8“)
    try:
    smtpobj=smtplib.SMTP()
    smtpobj.connect(host="smtp.qq.com", port="587") #链接服务器
    smtpobj.login(user="12345678@qq.com",password="授权码")
    sender = "12345678@qq.com"
    receiver = ['2804555260@qq.com']
    smtpobj.sendmail(sender,receiver,message.as_string()) #发送邮件内容
    print("邮件发送成功")
    except smtplib.SMTPException:
    print("邮件发送失败")
    5、 想添加多个附件在4的基础上追加多个附件如下:
    att2=MIMEText(open('test.txt',"rb").read(),"base64","utf-8")
    att2["Content-Type"] = 'application/octet-stream'
    att2["Content-Disposition"] = 'attachment; filename="test.txt"
    message.attach(att2)

    相关文章

      网友评论

          本文标题:python发送邮件

          本文链接:https://www.haomeiwen.com/subject/dxsqhktx.html