This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function main() { | |
//JANDI | |
const JANDI_WEBHOOK = "〇WebhookのURL〇"; | |
//Gmailから特定条件のスレッドを検索しメールを取り出す | |
var strTerms = 'is:unread "〇メールのタイトル〇"'; | |
var myThreads = GmailApp.search(strTerms, 0, 50); //条件にマッチしたスレッドを取得 | |
var myMsgs = GmailApp.getMessagesForThreads(myThreads); //スレッドからメールを取得する→二次元配列で格納 | |
//各スレッド×メール |