通过 Gmail 发送后损坏的 pdf API
Corrupted pdf after sending via Gmail API
我目前正在尝试通过 Gmail API 发送 pdf 附件,但我收到的文件似乎已损坏。这是我用来创建电子邮件的代码。
message_out = MIMEMultipart()
content_type, encoding = mimetypes.guess_type(attachment)
if content_type is None or encoding is not None:
content_type = 'application/octet-stream'
main_type, sub_type = content_type.split('/', 1)
with open(attachment, 'rb') as fp:
msg = MIMEBase(main_type, sub_type)
msg.set_payload(fp.read())
filename = os.path.basename(attachment)
msg.add_header('Content-Disposition', 'attachment', filename=filename)
msg.add_header('Content-Type', main_type, name=filename)
msg.add_header('Content-Transfer-Encoding', '7bit')
email.encoders.encode_base64(msg)
message_out.attach(msg)
return {'raw': base64.urlsafe_b64encode(message_out.as_bytes()).decode()}
当我尝试打开附件时,我得到一个 "failed to load PDF document"。我想这与编码有关,但我不明白为什么,我认为 email.encoders 会解决我所有的问题。 (同样的问题发生在 png 图像上)
非常感谢,
贾祖里
不出所料,这是一个编码问题,行
msg.add_header('Content-Transfer-Encoding', '7bit')
不应该在那里
我目前正在尝试通过 Gmail API 发送 pdf 附件,但我收到的文件似乎已损坏。这是我用来创建电子邮件的代码。
message_out = MIMEMultipart()
content_type, encoding = mimetypes.guess_type(attachment)
if content_type is None or encoding is not None:
content_type = 'application/octet-stream'
main_type, sub_type = content_type.split('/', 1)
with open(attachment, 'rb') as fp:
msg = MIMEBase(main_type, sub_type)
msg.set_payload(fp.read())
filename = os.path.basename(attachment)
msg.add_header('Content-Disposition', 'attachment', filename=filename)
msg.add_header('Content-Type', main_type, name=filename)
msg.add_header('Content-Transfer-Encoding', '7bit')
email.encoders.encode_base64(msg)
message_out.attach(msg)
return {'raw': base64.urlsafe_b64encode(message_out.as_bytes()).decode()}
当我尝试打开附件时,我得到一个 "failed to load PDF document"。我想这与编码有关,但我不明白为什么,我认为 email.encoders 会解决我所有的问题。 (同样的问题发生在 png 图像上)
非常感谢, 贾祖里
不出所料,这是一个编码问题,行
msg.add_header('Content-Transfer-Encoding', '7bit')
不应该在那里