typescript 创建Google Apps文件并通过电子邮件发送给某人

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 创建Google Apps文件并通过电子邮件发送给某人相关的知识,希望对你有一定的参考价值。

function createAndSendDocument() {
  // Create a new Google Doc named 'Hello, world!'
  var doc = DocumentApp.create('Hello, world!');

  // Access the body of the document, then add a paragraph.
  doc.getBody().appendParagraph('This document was created by Google Apps Script.');

  // Get the URL of the document.
  var url = doc.getUrl();

  // Get the email address of the active user - that's you.
  //var email = Session.getActiveUser().getEmail();
  var email = "person.name@email.com";

  // Get the name of the document to use as an email subject line.
  var subject = doc.getName();

  // Append a new string to the "url" variable to use as an email body.
  var body = 'Link to your doc: ' + url;

  // Send yourself an email with a link to the document.
  GmailApp.sendEmail(email, subject, body);
}

以上是关于typescript 创建Google Apps文件并通过电子邮件发送给某人的主要内容,如果未能解决你的问题,请参考以下文章

text 使用Google Apps脚本创建Google表格的自动计划备份副本

如何使用 Google Apps 脚本创建/更改具有给定 Meet URL 的 Google 日历活动?

Google Apps 脚本 - 将 gmail 中的数据提取到电子表格中

使用 Google Apps 脚本创建 Etag 字符串

使用 Google Apps 脚本创建 Strava Webhook 订阅时出现问题

使用 Google Apps 脚本在 Google 表格中创建新表格