gpt4 book ai didi

python - 使用 python 发送时,Thunderbird "size unknown"附件

转载 作者:太空宇宙 更新时间:2023-11-03 20:37:40 25 4
gpt4 key购买 nike

当我使用下面的python代码发送带有附件的电子邮件时,虽然可以下载附件,但附件旁边会显示大小未知,并且如果我转发该电子邮件,附件不在转发电子邮件中,这似乎是这是 Thunderbird(60.5.2(32 位))特有的问题,但由于我们公司完全依赖 TB,所以我需要修复 python 代码以使其与 TB 兼容。

我通过比较 TB 中发送的电子邮件附件的来源,使用了 TB 中“查看源代码”中的源原始字符串,这可行,但无济于事。

PS:在mozilla中找到相关的bug跟踪器供引用:https://bugzilla.mozilla.org/show_bug.cgi?id=548507

import os
import smtplib

from email.header import Header
from email.mime.multipart import MIMEMultipart
from email.mime.application import MIMEApplication
from email.mime.text import MIMEText
from email.utils import formataddr
from email.utils import parseaddr

sender = "from@gmail.com"
to_address = ["to@gmail.com"]
subject = "Test subject"
body = "Test body"
title = "title"

attach_files = ['c:\\dummy.pdf']

host = 'localhost.com'
user = 'user@mail.com'
password = 'password'

msg_root = MIMEMultipart('related')
addr = '{} <{}>'.format(title, sender)
name, address = parseaddr(addr)
msg_root['From'] = formataddr((
Header(name, 'utf-8').encode(),
address .encode('utf-8') if isinstance(address , unicode) else address))

msg_root['To'] = ','.join(to_address)
msg_root['Subject'] = Header(subject, 'utf-8')
msg_text = MIMEText(body, 'html', 'utf-8')
msg_root.attach(msg_text)

for index, attach_file in enumerate(attach_files, start=1):
with open(attach_file, 'rb') as attach_obj:
attach = MIMEApplication(attach_obj.read(),
_subtype="pdf",
name=os.path.basename(attach_file))
attach.add_header('Content-Disposition', 'attachment',
filename=os.path.basename(attach_file))
msg_root.attach(attach)

connection = smtplib.SMTP_SSL(host=host, timeout=5)
try:
connection.login(user=user, password=password)
connection.sendmail(user, all_address, msg_root.as_string())
finally:
connection.quit()

我可以接受任何答案,只要:当转发通过 Python 发送的带有附件的电子邮件时,该电子邮件的附件仍然包含在 TB(最新版本 60+)中。

预期结果:附件旁边有文件大小,转发附件邮件也会包含附件。

最佳答案

使用“混合”而不是“相关”

msg_root = MIMEMultipart('mixed')

您将在附件旁边看到大小,并且附件将被转发。

<小时/>

TB 60.7.2(64 位)/Linux Mint 19.1

上测试

关于python - 使用 python 发送时,Thunderbird "size unknown"附件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57064115/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com