我目前正在一个项目中,我需要向用户发送邮件并附加来自Google文档的一些文档。
我有要发送的文件的文件ID。我不想下载文件,然后将其附加到邮件中。有什么方法可以直接从Google云端硬盘附加文件,而无需将其下载到我们的本地存储中吗?
我尝试过的方法-
我首先尝试导出文件,然后将类似对象的字节存储在变量中,然后将其传递给create_message()方法。但是mimeType.guess_type()需要一个类似于object的字符串,它既可以是路径也可以是URL。
然后我尝试将驱动器URL直接传递给create_message()方法,但没有成功。
这是我的create_message方法-
def create_message_with_attachment(self, sender, to, subject, message_text,files):
"""Create a message for an email.
Args:
sender: Email address of the sender.
to: Email address of the receiver.
subject: The subject of the email message.
message_text: The text of the email message.
file: The path to the file to be attached.
Returns:
An object containing a base64url encoded email object.
"""
message = MIMEMultipart()
message['to'] = to
message['from'] = sender
message['subject'] = subject
msg = MIMEText(message_text)
message.attach(msg)
for fil in files:
content_type, encoding = mimetypes.guess_type(fil)
if content_type is None or encoding is not None:
content_type = 'application/octet-stream'
main_type, sub_type = content_type.split('/', 1)
if main_type == 'text':
fp = open(fil, 'rb')
msg = MIMEText(fp.read(), _subtype=sub_type)
fp.close()
elif main_type == 'image':
fp = open(fil, 'rb')
msg = MIMEImage(fp.read(), _subtype=sub_type)
fp.close()
elif main_type == 'audio':
fp = open(fil, 'rb')
msg = MIMEAudio(fp.read(), _subtype=sub_type)
fp.close()
else:
fp = open(fil, 'rb')
msg = MIMEBase(main_type, sub_type)
msg.set_payload(fp.read())
fp.close()
filename = os.path.basename(fil)
msg.add_header('Content-Disposition', 'attachment', filename=filename)
message.attach(msg)
b64_bytes = base64.urlsafe_b64encode(message.as_bytes())
b64_string = b64_bytes.decode()
body = {'raw': b64_string}
return body
files参数是array,因为我想在3-4左右发送多个附件。
到目前为止,还没有运气。有人可以建议其他方法来实现这一目标吗?
答案 0 :(得分:0)
Google Apps的问题是下载或导出数据时无法保留数据类型-需要将其转换为其他MIMEType。因此,如果您在发送带有附件的电子邮件时遇到问题,建议您执行以下解决方法: 在您的电子邮件中包含文件的链接,而不是文件本身。在这种情况下,您必须执行以下步骤:
与相应用户共享感兴趣的文件。您可以通过创建和更新permissions来以编程方式执行此操作。对于您的情况,您需要指定emailAddress,fileID,并在请求正文中包含您要赋予电子邮件收件人的角色。如果更新现有权限,则还需要指定PermissionId。 在电子邮件正文中包含所需文件的webViewLink。您可以通过listing files并将指定的webViewLink指定为要在响应中获取的字段