Skip to content

Instantly share code, notes, and snippets.

@St3ph-fr
Created February 21, 2022 13:52
Show Gist options
  • Save St3ph-fr/f360ac361506bfe0abe6033c5c278799 to your computer and use it in GitHub Desktop.
Save St3ph-fr/f360ac361506bfe0abe6033c5c278799 to your computer and use it in GitHub Desktop.
function countLabels() {
var labels = GmailApp.getUserLabels();
var count = 0;
for(var key in labels){
count++;
}
console.log('You have '+ count +' labels in Gmail.')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment