iEhohs DokuWiki

プログラミングや設定方法など、個人的なナレッジを残しておくWikiです。

ユーザ用ツール

サイト用ツール


gws:gas-gmail-get-message

Gmailの受信メールを検索して取得するGAS

const query = 'ほげ';   // 検索する文字列
const start = 0;        // 開始番号
const max = 10;         // 取得数
 
const threads = GmailApp.search(query, start, max);
const messagesForThreads = GmailApp.getMessagesForThreads(threads);
 
for(const messages of messagesForThreads){
    console.log(messages[0].getSubject());
    console.log(messages[0].getPlainBody());
}
スポンサーリンク
gws/gas-gmail-get-message.txt · 最終更新: 2024/07/26 20:25 by shimehitsu14