Skip to content

Instantly share code, notes, and snippets.

@jivimberg
Created January 18, 2017 16:31
Show Gist options
  • Save jivimberg/68cf688c74e116872bd6a0612c794f6e to your computer and use it in GitHub Desktop.
Save jivimberg/68cf688c74e116872bd6a0612c794f6e to your computer and use it in GitHub Desktop.
Google Apps Script to get notified about the number of unread emails in an inbox
function unreadCount() {
var unreadCount = GmailApp.getInboxUnreadCount();
var masterEmail = "<your-email@something.com>";
var subject = "Your unread count";
var message = "You have " + unreadCount + " emails"
MailApp.sendEmail(masterEmail, subject, message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment