gws:gmail-get-message
Gmailの受信メールを検索して取得するGAS
const query = 'ほげ'; // 検索する文字列 const begin = 0; // 開始番号 const max = 10; // 取得数 const threads = GmailApp.search(query, begin, max); const messagesForThreads = GmailApp.getMessagesForThreads(threads); for(const messages of messagesForThreads){ console.log(messages[0].getSubject()); console.log(messages[0].getPlainBody()); }
gws/gmail-get-message.txt · 最終更新: by shimehitsu14