Skip to content

Instantly share code, notes, and snippets.

@incognitosj
Last active January 8, 2017 14:06
Show Gist options
  • Save incognitosj/a01685731d1fca01a17f90c4558eb35d to your computer and use it in GitHub Desktop.
Save incognitosj/a01685731d1fca01a17f90c4558eb35d to your computer and use it in GitHub Desktop.
Google App Script pop all emails from a Gmail Label
/**
* 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