Skip to content

Instantly share code, notes, and snippets.

@milesgrimshaw
Created September 25, 2014 15:33
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save milesgrimshaw/fdca74aabf686df8b009 to your computer and use it in GitHub Desktop.
Save milesgrimshaw/fdca74aabf686df8b009 to your computer and use it in GitHub Desktop.
Google Apps Script to save the count of emails in your inbox
function processInbox() {
// get all threads in inbox
var threads = GmailApp.getInboxThreads();
data_id = '1t70IDdWcaJzCIIaNWm2nHSPKzetHfTxhkKc9jKkAlpA'
var dataSs = SpreadsheetApp.openById(data_id);
var sheet = dataSs.getSheets()[0];
var current_date = new Date();
sheet.appendRow([current_date, current_date.toISOString(),threads.length]);
};
@mstawarski
Copy link

I think this would only work correctly, if the thread count in the inbox is below 500

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment