0
我每天都會收到來自我製作的應用程序的同一封電子郵件。這些電子郵件除了一些數字外,還有相同的文本(例如2
而不是9
)。我正在嘗試構建自動編譯我的Google表格報告的腳本。將Gmail文本導入到特定的Google表格
function myFunction() {
var thread = GmailApp.getUserLabelByName("").getThreads(0,1)[0]; // get first thread in inbox
var message = thread.getMessages()[0]; // get first message
Logger.log(message.getBody()); // log contents of the body
}
但它不起作用。
我在做什麼錯?