執行作業資訊

指令碼執行說明

您可以透過 這個 ExecutionInfo敬上 物件。例如: isPreview()敬上 指出指令碼目前正在預覽或實際上 或是執行中的工作

這通常可以簡化程式碼偵錯:

// Code that generates a report.
// ...
if (!AdsApp.getExecutionInfo().isPreview()) {
  // Do not email the report when in preview mode!
  MailApp.sendEmail("customer@example.com", "Report is ready!", report);
}

指令碼帳戶說明

您通常需要為執行中的指令碼提供帳戶資訊,特別是當 相同的未變更指令碼用於多個帳戶。如果指令碼會傳送電子郵件 輸出報表時,收件者需要辨別來源帳戶。你可以 請使用 Account敬上 物件的 getCustomerId()。 方法:

let accountId = AdsApp.currentAccount().getCustomerId();
MailApp.sendEmail("customer@example.com",
    "Report is ready for " + accountId, report);

Account 物件也有可讓您識別帳戶的 貨幣和時區