Skip to content

Instantly share code, notes, and snippets.

@kob-to-wni
Created January 12, 2017 10:43
Show Gist options
  • Save kob-to-wni/b5310ab4b1cf21973f943275e4fb77e0 to your computer and use it in GitHub Desktop.
Save kob-to-wni/b5310ab4b1cf21973f943275e4fb77e0 to your computer and use it in GitHub Desktop.
GMailから古い重要でないメールを削除する例
// フラグ付きでなく、未読でなく、自分宛てでない、180日より前のメールを削除する
function deleteOldMails() {
var m = GmailApp.search('-label:starred -label:unread -to:me older_than:180d');
for (var i = 0; i < m.length; i++) {
m[i].moveToTrash();
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment