Send an email for every row in a Google Sheet

This tutorial will teach you how to send an email for every row in a Google Sheet.

Goal

You have a list of email addresses in a sheet and you want to send an email to each person on this list.

Prerequisites

This tutorial assumes that you're familiar with:

  • Google Sheets
  • Coding using Google Apps Script (just a basic understanding is sufficient)
  • Basic coding concepts such as loops and arrays (ideally you're familiar with JavaScript)

This tutorial is divided into four sections

  • Create a sheet called Emails containing email addresses.
  • Create a sheet called Templates that contains the subject and body of the email message.
  • Create an Apps Script to read data from your sheet and send emails.
  • Run your script to send emails.

Section 1: Create a sheet containing email addresses

  • Create a new Google Sheet.
  • Rename the sheet from Sheet1 to Emails.
  • Enter a header for the column that will contain email addresses. I entered "Email Addresses".
  • Enter the email addresses of users you want to email.

Section 2: Create a sheet called Templates containing the subject and body of the email message

  • Create a new sheet called Templates.
  • Enter the email subject and body in the sheet. Enter the subject in cell A2 and the body in cell A5.

Section 3: Create an Apps Script to read data from your sheet and send emails

First, open the script editor by selecting Tools → Script editor. Then, replace the function myFunction with the code below.

/**
 * Returns a rectangular grid of values in a given sheet.
 * @param {string} sheetName The name of the sheet.
 * @return {object[][]} A two-dimensional array of values in the sheet.
 */
function getData(sheetName) {
  var data = SpreadsheetApp.getActive().getSheetByName(sheetName).getDataRange().getValues();
  return data;
}

/**
 * Sends an email for each row.
 */
function sendEmails() {
  var templateData = getData("Templates");
  var emailSubject = templateData[1][0]; //Cell A2 (contains the email subject)
  var emailBody = templateData[4][0]; //Cell A5 (contains the email body)
  var emailData = getData("Emails");
  var headerRow = emailData.shift(); //Remove the header row
  emailData.forEach(function (row) {
    var email = row[0];
    MailApp.sendEmail(email, emailSubject, emailBody);
  });
}

Understanding the output of the getData() function

The data returned by the getData() function is a two-dimensional array of values in a sheet, indexed by row and then by column. Consider the following statement.

emailData = getData("Emails");

The output of the getData("Emails") function is the data structure below. It is a two-dimensional array of values in the Emails sheet.

[
  [ "Email Addresses" ],
  [ "rob@example.com"  ],
  [ "jack@example.com" ],
  [ "paige@example.com" ],
  [ "terry@example.com" ],
  [ "margaret@example.com" ],
  [ "jenny@example.com" ],
  [  "frank@example.com" ],
  [ "paul@example.com" ]
]

Below is a representation of the above data structure in tabular form. To access a value, use the row index followed by the column index. To access the email address "paige@example.com", use emailData[3][0] (3 is the row index and 0 is the column index).

Understanding how the sendEmails() function works

First, we use the getData() function to get the email subject and body from the Templates sheet.

var templateData = getData("Templates");
var emailSubject = templateData[1][0]; //Cell A2 (contains the email subject)
var emailBody = templateData[4][0]; //Cell A5 (contains the email body)

Next, we get the data in the Emails sheet.

var emailData = getData("Emails");

We remove the header row from emailData since it isn't an email address. The shift() function removes the first value in an array and returns it.

var headerRow = emailData.shift(); //Remove the header row

Then, we iterate through each row in emailData, get the email address from the row and send an email.

emailData.forEach(function (row) {
  var email = row[0];
  MailApp.sendEmail(email, emailSubject, emailBody);
});

Section 4: Run your script to send emails

To run your script, choose the sendEmails function from the drop down menu and click the play icon.

You'll be asked to authorize the script. Once you authorize it, your script will run and emails will be sent. Here is a screenshot of an email that was sent when I ran the script.

Future work

There are several ways in which the script can be improved. Here are a few:

  • Check if the data in a row is a valid email address before sending the email. The script currently does not validate the data in the sheet. This is important to do if the email addresses are entered by users directly since there could be typos.
  • There is no way for a recipient to unsubscribe from receiving the email. If you're sending these emails to your colleagues at work, they can just email or call you if they don't want to receive the emails. But if you're sending newsletters or emails with promotional content, you could be required by law to collect opt-in consent and/or provide additional options for recipients to unsubscribe.
  • There are no checks in place to prevent duplicate emails from being sent. For example, if you click the play icon twice by mistake, your users are going to get two emails. This would lead to a bad user experience and users could mark your emails as SPAM.
  • The email is currently not personalized. In general, users (myself included) prefer receiving emails that are relevant and personalized. This could be as simple as addressing the user by their name instead of a generic "Hi there". You can also get more sophisticated with messaging but at that point it is probably better to use an Email CRM system versus Google Sheets and Apps Script.

Summary

In this tutorial, you learned how to send an email for every row in a Google sheet.

Thanks for reading!

Stay up to date

Follow me via email to receive actionable tips and other exclusive content. I'll also send you notifications when I publish new content.
By signing up you agree to the Privacy Policy & Terms.

Have feedback for me?

I'd appreciate any feedback you can give me regarding this post.

Was it useful? Are there any errors or was something confusing? Would you like me to write a post about a related topic? Any other feedback is also welcome. Thank you so much!