python发邮件包含表格_使用Python发送邮件(图片、表格、附件) 系列一:如何发送图片、表格等的全代码...

本文中Part 0 + 中间任何一Part 或组合 + Part 6, 即可将内容正常发送到QQ邮箱。本文使用个人电脑和个人邮箱,对代码进行了测试,可以正常运行。非常感谢诸位网友的共享,在写代码的过程中给了我很大的帮助,如果出现了问题错误,可以多搜索多尝试,希望对各位有帮助。

使用Python发送邮件(图片、表格、附件) 系列二: 同时发送图片和附件实际案例

https://blog.csdn.net/u010652755/article/details/104321576

使用Python发送邮件(图片、表格、附件) 系列三: 发送工作报表之透视表自动刷新数据https://blog.csdn.net/u010652755/article/details/104350889

# -*- coding: utf-8 -*-

"""

Created on Wed Feb 12 16:26:38 2020

@author: xxx

"""

import os

os.chdir(r'F:\自动化报表') # 设置文件路径

import numpy as np

import pandas as pd

import smtplib

from email.message import EmailMessage

from email.header import Header

from email.mime.text import MIMEText

from email.mime.image import MIMEImage

from email.mime.multipart import MIMEMultipart

from email.mime.application import MIMEApplication

# Part 0 set initial parameter

mail_user = 'xxxxx' # 邮箱登录名,次处使用QQ邮箱,填写QQ号即可,不用带@qq.com

mail_pass = 'abcdefghijk' # QQ邮箱授权码,可百度如何获取

sender = 'xxxxx@qq.com' # 发件人

receivers = ['abcxxx@qq.com', 'efgxxx@126.com'] # 收件人列表,list形式

chaosong = ['hijxx@qq.com'] # 抄送人列表,list形式

# 设置邮件体对象

msg = MIMEMultipart() # 邮件体对象,此处可加入参数, 具体可百度

subject = 'python send email test' # 邮件主题

msg['subject'] = Header(subject, 'utf-8') # 加入邮件主题

msg['From'] = "{}".format(sender) # 加入邮件发送人

msg['To'] = ",".join(receivers) # 加入邮件接收人

msg['Cc'] = ",".join(chaosong) # 加入邮件抄送人,如无,可注释掉

# Part 1 文本内容

text_content = """This is a test email"""

textApart = MIMEText(text_content, 'plain', 'utf-8')

msg.attach(textApart)

# Part 2.1 发送单个附件

pdfFile = r"F:\自动化报表\test.pdf"

pdfName = 'test.pdf'

pdfApart = MIMEApplication(open(pdfFile, 'rb').read())

pdfApart.add_header('Content-Disposition', 'attachment', filename=pdfName)

msg.attach(pdfApart)

# Part 2.2 发送多个附件

files = ['temp.xlsx', 'test.pdf']

for i in np.arange(len(files)):

attFile = MIMEApplication(open(files[i], 'rb').read())

attFile.add_header('Content-Disposition', 'attachment', filename=files[i])

msg.attach(attFile)

# Part 3.1 网页内容,有链接,插入图片; 如果同时发送网页内容和纯文本,只保留网页内容。因不影响使用,未追查原因

htmlFile = """\

Hi!

How are you?

Here is the link you wanted.

图片演示:

cid:0

""" # 图片演示下的 cid 后的内容(可能不是数字)需与 下面 imageApart.add_header('Content-ID', '<0>') 的<>内容一致

htmlApart = MIMEText(htmlFile, 'html')

# 在正文中显示图片

imageFile = 'trees in automn.png'

imageApart = MIMEImage(open(imageFile, 'rb').read(), imageFile.split('.')[-1])

imageApart.add_header('Content-ID', '<0>')

msg.attach(imageApart)

msg.attach(htmlApart)

# Part 3.2 在附件中显示图片。Part 3.1 只能在正文显示图片,如果想同时将同一张图片加入附件,可用如下代码

attachImage = MIMEImage(open(imageFile, 'rb').read(), imageFile.split('.')[-1])

attachImage.add_header('Content-Disposition', 'attachment', filename=imageFile)

msg.attach(attachImage)

# Part 4 在HTML或附件中显示多张图片

# 网页内容,有链接,插入多张图片

htmlFile = """\

Hi!

How are you?

Here is the link you wanted.

图片演示flowers:

cid:0

第四张图片:

cid:1

向阳而生的树木:

cid:2

秋天的树木:

cid:3

"""

htmlApart = MIMEText(htmlFile, 'html')

# 在正文中显示多张图片

images = [ i for i in os.listdir() if i.endswith(('.jpg', '.png'))] # images列表存放要发送的图片附件,路径已设置,见开头,此处未用全路径

for i in np.arange(len(images)):

imageFile = images[i]

imageMultiApart = MIMEImage(open(imageFile, 'rb').read(), imageFile.split('.')[-1])

imageMultiApart.add_header('Content-ID', '' % i)

msg.attach(imageMultiApart)

msg.attach(htmlApart)

# 在附件中显示多张图片, 可与 part 2.2 合并

for i in np.arange(len(images)):

imageFile = images[i]

attachImage = MIMEImage(open(imageFile, 'rb').read(), imageFile.split('.')[-1])

attachImage.add_header('Content-Disposition', 'attachment', filename=imageFile)

msg.attach(attachImage)

# Part 5

# 邮件正文中嵌入表格,比较简单的单行单列的表格,即同一行或同一列中没有其他合并的单元格

pd.set_option('display.max_colwidth', -1)

df = pd.read_excel('temp.xlsx', nrows=5)

# df['缩略图'] = '

' + df['缩略图'] + '' # 表中含有图片链接时的转换,如为普通数据,可注释掉

table_title = " 表格标题"

def get_html_msg(df, table_title):

"""

1. 构造html信息

"""

df_html = df.to_html(escape=False)

# 表格格式

head = \

"""

"""

# 构造正文表格

body = \

"""

{table_title}

带图片展示的表格

{df_html}

""".format(df_html=df_html, table_title=table_title)

html_msg= "" + head + body + ""

# 这里是将HTML文件输出,作为测试的时候,查看格式用的,正式脚本中可以注释掉

# fout = open('test.html', 'w', encoding='UTF-8', newline='')

# fout.write(html_msg)

return html_msg

# html 内容

html_msg = get_html_msg(df, table_title)

content_html = MIMEText(html_msg, "html", "utf-8")

msg.attach(content_html)

# Part 6 发送邮件,参数设置

sftp_obj = smtplib.SMTP_SSL(host='smtp.qq.com', port = 465)

sftp_obj.login(mail_user, mail_pass)

sftp_obj.sendmail(sender, receivers, msg.as_string())

sftp_obj.quit()

sftp_obj.close()

print('\nThe email has been sent successfully')

del msg

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值