使用 Google App Scripts 在电子邮件中附加 Google Docs 文件

Posted

技术标签:

【中文标题】使用 Google App Scripts 在电子邮件中附加 Google Docs 文件【英文标题】:Attach a Google Docs file in an email with Google App Scripts 【发布时间】:2021-12-13 22:01:25 【问题描述】:

我正在尝试使用 Google App Scripts 将 Google Docs 文件附加到电子邮件中。 我有一个包含文件的文件夹,我的想法是从那里获取文件并使用保存在谷歌表格中的电子邮件地址通过电子邮件发送。

我创建并使用了这个:

function emailDocTestasDocx() 
  var id = '1egjazIip6zuPneKh2sVFTvbK06asd4ZgAvrgjw';// an example of Google doc
  var url = 'https://docs.google.com/document/d/1egjaasdasdeKh2sVFTvbK06z4JbPqnm4ZgAvrgjw';
  var doc = UrlFetchApp.fetch(url);
  var me = Session.getEffectiveUser().getEmail();
  MailApp.sendEmail(me, 'test', 'see attachment', attachments:[doc]);

它可以工作,但最后的附件是一个 html,它将我重定向到文件夹内的文档。我不想要那个。我想发送附件,但我还没有找到方法。

有什么想法吗?谢谢!

【问题讨论】:

Google Docs 不是您可以在云之外打开的东西,因此您无法将它们附加到邮件中。您可以使用导出附加 pdf 或 docx。 这能回答你的问题吗? How to Attach Google Drive File with sendMail Function in Apps Script? 【参考方案1】:

正如 @Karan 在 cmets 上提到的,Google Docs 不是您可以在云之外打开的东西(它总是通过 docs.google 打开。 com 网站),因此您不能将它们作为文件附加到邮件中。您可以将文档附加为 PDF 或先将文档文件导出为扩展名为 .docx 的文档,然后将文件保存到您的 Google 云端硬盘:

将 Google doc 文件作为 PDF 发送的示例调整脚本:

function emailDocTestasDocx() 
  var id = '1egjazIip6zuPneKh2sVFTvbK06asd4ZgAvrgjw';// an example of Google doc
  var url = 'https://docs.google.com/document/d/1egjaasdasdeKh2sVFTvbK06z4JbPqnm4ZgAvrgjw';
  var doc = DriveApp.getFileById(id); //used ID to get the file saved in your Drive using DriveApp.getFileById() method
  var me = Session.getEffectiveUser().getEmail();
  MailApp.sendEmail(me, 'test', 'see attachment', attachments:[doc]); //attach the file via email

样本结果

您也可以查看这些类似帖子的答案:

Convert Google Doc to PDF using Google Script Editior Google Apps Script: Send docx email attachment Send email with an attachment located in Google Drive

【讨论】:

以上是关于使用 Google App Scripts 在电子邮件中附加 Google Docs 文件的主要内容,如果未能解决你的问题,请参考以下文章

离线使用Google Apps Scripts

如何为具有多个帐户的用户在Google App Scripts中选择帐户?

如何使用 Google App Scripts 从数据透视表中将详细信息表附加为 pdf 或 excel?

有没有办法访问 Google App Scripts 中的 Adwords?

Google App Scripts(表格)未连接YouTube品牌帐户

如何设置表的架构以在 Google App Scripts 中自动检测从 Google Cloud Storage 获取数据?