指令碼執行說明
您可以透過 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
物件也提供方法,可讓您識別帳戶的幣別和時區。