0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【GAS】メール取得

Last updated at Posted at 2018-11-18

やっていることはGmailアプリの検索画面でメールをフィルタしている。
スクリーンショット 2018-11-18 23.10.25.png

以下、ソース

function GetMail(){
 var year = 2018;
 var month = 11;
 var startPeriod = "after:" + year + "/" + month + "/01";//取得開始月
 var lastDay = new Date(year, month, 0).getDate();//月末日
 var endPeriod = "before:" + year + "/" + month "/" + lastDay;//取得終了月
 var to = "to:指定メールアドレス";
 var searchThread = to + "," + startPeriod + "," + endPeriod;//検索条件
 var threads = GmailApp.search(searchThread);

 //検索条件「toが指定メールアドレスかつ2018/11/01〜2018/11/30」のメールをログ出力
 threads.forEach(function(thread,i,array){
 Logger.log(thread.getFirstMessageSubject()); 
 });
}

あとは、スプレッドシートに転記するなど、タスク実行させてもいいかも。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?