我想通过 Javascript/Google App 脚本中的 API 响应向用户发送电子邮件?

我正在使用谷歌应用程序脚本从外部 API 获取数据。我想知道是否有一种方法可以在执行以下代码后将 JSON 中的数据发送到 G-suite/Gmail 上的用户电子邮件。任何人都知道如何做到这一点?


  var url = 'https....';

  var response = UrlFetchApp.fetch(url, options);

  if (response.getResponseCode() === 200) {

  var json = JSON.parse(response);

  var id = json["id"];

  sheet.getRange(2+i, 21).setValue(id);

  sheet.getRange(2+i, 22).setValue(1);

  }

else {

 sheet.getRange(2+i, 22).setValue(2);


倚天杖
浏览 143回答 1
1回答

慕虎7371278

您可以使用两个 sendEmail 函数之一,具体取决于您是否希望 json 简单地位于正文 [1] 或作为附件 [2]。一个简单的例子是:GmailApp.sendEmail("mike@example.com", "current time", "The time is:");[1] https://developers.google.com/apps-script/reference/gmail/gmail-app#sendemailrecipient,-subject,-body[2] https://developers.google.com/apps-script/reference/gmail/gmail-app#sendemailrecipient,-subject,-body,-options
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript