Created
December 16, 2018 23:53
-
-
Save koluku/275b800bcba00fb79c623541b8d51dd6 to your computer and use it in GitHub Desktop.
This file contains 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() { | |
var threads = GmailApp.search("-in:inbox is:unread"); | |
threads.forEach(function(thread){ | |
thread.markRead(); | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment