一個基本的 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());
}