Gmail to Evernote with Google Scripts

The Gmail to Evernote program will automatically send your Gmail message to your Evernote account using Google Scripts. It reads the various parameters from a Google sheet (like the default tag name and Evernote notebook name) and forwards the matching email threads to Evernote using the GmailApp service.

var sheet = SpreadsheetApp.getActiveSpreadsheet();

var params = sheet.getRange('D3:D7').getValues();

// Gmail Label name to Monitor
var label = GmailApp.getLabelByName(params[1][0].trim().replace(/\\s+/g, '-'));

var threads = label.getThreads();

for (var t in threads) {
  var messages = threads[t].getMessages();

  // Forward the latest message in the thread to Evernote
  var message = messages[messages.length - 1];

  // Append the Evernote notebook and tag to the subject
  var subject = [message.getSubject(), params[2][0], params[3][0]].join(' ');

  try {
    message.forward(params[0][0], { subject: subject });
  } catch (f) {
    Logger.log(f.toString());
  }

  // Trash the message after forwarding to Evernote
  if (params[2][0].match(/y/i)) {
    threads[t].moveToTrash();
  } else {
    threads[t].removeLabel(label);
  }
}
Amit Agarwal

Amit Agarwal

Google Developer Expert, Google Cloud Champion

Amit Agarwal is a Google Developer Expert in Google Workspace and Google Apps Script. He holds an engineering degree in Computer Science (I.I.T.) and is the first professional blogger in India.

Amit has developed several popular Google add-ons including Mail Merge for Gmail and Document Studio. Read more on Lifehacker and YourStory

0

Awards & Titles

Digital Inspiration has won several awards since it's launch in 2004.

Google Developer Expert

Google Developer Expert

Google awarded us the Google Developer Expert award recogizing our work in Google Workspace.

ProductHunt Golden Kitty

ProductHunt Golden Kitty

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

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional (MVP) title for 5 years in a row.

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator title recognizing our technical skill and expertise.

Email Newsletter

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

We will never send any spam emails. Promise.