Last active
January 8, 2017 14:06
-
-
Save incognitosj/a01685731d1fca01a17f90c4558eb35d to your computer and use it in GitHub Desktop.
Google App Script pop all emails from a Gmail Label
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
/** | |
* label: gmail label to be read | |
**/ | |
function readGmailLabel(label) { | |
var emails = []; | |
var label = GmailApp.getUserLabelByName(label); | |
var threads = label.getThreads(); | |
for (var j = threads.length - 1; j >= 0; j--) { | |
emails.push({ | |
body: threads[j].getMessages()[0].getPlainBody(), | |
date: threads[j].getMessages()[0].getDate() | |
}); | |
} | |
label.removeFromThreads(threads); | |
return emails; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment