# Python有两个内置库:smtplib和email,能够实现邮件功能。 import smtplib # smtplib库负责发送邮件 import email # email库负责构造邮件格式和内容 # 构造文本 from email.mime.text import MIMEText # 构造图片 from email.mime.image import MIMEImage # 将多个对象集合起来 from email.mime.multipart import MIMEMultipart from email.header import Header # 1.设置邮箱域名、发件人邮箱、邮箱授权码、收件人邮箱 mail_host = "smtp.126.com" # SMTP服务器,这里使用163邮箱 mail_sender = "xxxxx@126.com" # 发件人邮箱 mail_license = "xxxxxx" # 邮箱授权码,这里不是邮箱密码 mail_receivers = ["xxxx@qq.com"] # 收件人邮箱,可以有多个收件人 # 2.构建MIMEMultipart对象代表邮件本身,可以往里面添加文本、图片、附件等 mm = MIMEMultipart('related') # 3.设置邮件头部内容 subject_content = "邮件测试" # 邮件主题 # 设置发送者,注意严格遵守格式,里面邮箱为发件人邮箱 mm["From"] = "sender_name<xxxx@126.com>" # 设置接受者,注意严格遵守格式,里面邮箱为接受者邮箱 mm["To"] = "receiver_1_name<xxx@qq.com>" # 设置邮件主题 mm["Subject"] = Header(subject_content, 'utf-8') # 4.添加正文文本 body_content = "这是一个测试邮件" # 邮件正文内容 # 构造文本,参数1:正文内容,参数2:文本格式,参数3:编码方式 message_text = MIMEText(body_content, "plain", "utf-8") # 向MIMEMultipart对象中添加文本对象 mm.attach(message_text) # 5.添加图片 image_data = open(r'C:UsersDesktop3.png', 'rb') # 二进制读取图片 # 设置读取获取的二进制数据 message_image = MIMEImage(image_data.read()) image_name = '3.png' message_image['Content-Disposition'] = 'attachment;filename=%s' % image_name.encode('utf-8') # 避免文件后缀改变 # 关闭刚才打开的文本 image_data.close() # 添加图片文件到邮件信息当中 mm.attach(message_image) # 6.添加附件 atta = MIMEText(open(r'C:UsersDesktopsample.xlsx', 'rb').read(), 'base64', 'utf-8') # 构造附件 # 设置附件信息 # atta["Content-Disposition"] = 'attachment; filename="sample.xlsx"' atta["Content-Type"] = 'application/octet-stream' atta["Content-Disposition"] = 'attachment;filename="sample.xlsx"' # 添加附件到邮件信息当中去 mm.attach(atta) # 7.发送邮件 stp = smtplib.SMTP() # 创建SMTP对象 # 设置发件人邮箱的域名和端口,网易端口地址为25 stp.connect(mail_host, 25) # set_debuglevel(1)可以打印出和SMTP服务器交互的所有信息 stp.set_debuglevel(1) # 登录邮箱,传递参数1:邮箱地址,参数2:邮箱授权码 stp.login(mail_sender, mail_license) # 发送邮件,传递参数1:发件人邮箱地址,参数2:收件人邮箱地址,参数3:把邮件内容格式改为str stp.sendmail(mail_sender, mail_receivers, mm.as_string()) print("邮件发送成功") # 关闭SMTP对象 stp.quit() # 网易邮箱的客户端授权密码:登录网页版——设置——POP3/SMTP/IMAP——设置