一个基本的 MailApp 示例

MailApp 是 Google App Script 中的 api,可用于发送邮件

function sendEmails() {

  var subject = "A subject for your new app!";
  var message = "And this is the very first message"
  var recipientEmail = "abc@example.com";

  MailApp.sendEmail(recipientEmail, subject, message);
}  

MailApp 类仅限于基于你的 Google 帐户的配额

  • 消费者用户(即个人 Gmail 帐户):每天 100 个收件人
  • Google Apps(旧版)客户:每天 100 位收件人
  • GSuite(基本/政府/教育/商业/商业):每天 1500 名受助人

你可以在 MailApp 内查看你的电子邮件配额

function checkQuota() {
  Logger.log(MailApp.getRemainingDailyQuota());
}