星期六, 7月 04, 2026

[GAS] 服務配額-MailApp.getRemainingDailyQuota

之前以為 Google Apps Script 服務配額是沒有內建函數可以查詢,上課時老師提到可寄發 mail 數量是可以查詢的,查發現是透過 getRemainingDailyQuota() 來取得,官方文件說明
Returns the number of recipients you can send emails to for the rest of the day. The returned value is valid for the current execution and might vary between executions.
function sendEmailQuotaQuery()
{
  console.log(MailApp.getRemainingDailyQuota());
}

沒有留言:

張貼留言