Create Nested Labels in Gmail with Apps Script

You can create nested labels in Gmail with the help Google Apps Script using the createLabel method of the GmailApp service. The important thing to note is that the parent label should exist before a child label is created.

You can specify the label hierarchy in this format - Parent/Child/Grandchild/GreatGrandChild. Also avoid using dashes - in the name as they are seen as label separators in Gmail.

function createNestedGmailLabel() {
  var name = 'Parent Label/Child Label/Grandchild Label';
  var labels = name.split('/');
  var gmail,
    label = '';

  for (var i = 0; i < labels.length; i++) {
    if (labels[i] !== '') {
      label = label + (i === 0 ? '' : '/') + labels[i];
      gmail = GmailApp.getUserLabelByName(label) ? GmailApp.getUserLabelByName(label) : GmailApp.createLabel(label);
    }
  }

  return gmail;
}

Amit Agarwal is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

Want to stay up to date?
Sign up for our email newsletter.

We will never send any spam emails. Promise 🫶🏻