Recently, we have been writing a lot of stuff related to Web Design and Development, like collecting form responses, that can be implemented using Google Apps Scripts and Serverless Architecture. In this blog, we will talk about email marketing. We will set up custom email marketing purely using Google Apps Script. The advantage is we can take control of our email marketing campaign and create our own automated workflows.
Contents
- Creating a new Spreadsheet
- Creating a new Google Apps Project
- Writing code
- Running the script
- Results
1. Creating a new Spreadsheet
First of all, we need a Google Sheet where we store all of our email addresses to whom we want to send the emails. Let’s create a new spreadsheet.
2. Creating a new Google Apps Project
Now is the time to connect our Google sheet to a Google Apps Script. From Tools, we select the Script Editor.
3. Writing code
Finally, it is time to write some code.
a.) Main.gs
Add the following the code to the file:
function sendEmails(mail_template='content',
subject='Testing my Email Marketing') {
// get the active spreadsheet and data in it
var id = SpreadsheetApp.getActiveSpreadsheet().getId();
var sheet = SpreadsheetApp.openById(id).getActiveSheet();
var data = sheet.getDataRange().getValues();
// iterate through the data, starting at index 1
for (var i = 1; i < data.length; i++) {
var row = data[i];
var email = row[0];
var name = row[1];
// check if we can send an email
if (MailApp.getRemainingDailyQuota() > 0) {
// populate the template
var template = HtmlService.createTemplateFromFile(mail_template);
template.name = name;
var message = template.evaluate().getContent();
GmailApp.sendEmail(
email, subject, '',
{htmlBody: message, name: 'RavSam Team'}
);
}
}
}
The comments have been included in the file for a proper description of the above function.
Always use GmailApp.sendEmail instead of MailApp.sendEmail. It is a more stable and reliant function.
b.) content.html
Since the above script uses an HTML file and populates it, we need to create an HTML template file. Add the following the code to the file:
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
Hi <?= name ?>. We are testing our beta features for email marketing.
</body>
</html>
The <?= name ?> template variable gets auto-filled by the email marketing script.
4. Running the script
We have done all the necessary setup to start a successful email marketing campaign. Before we run our code, we need to grant
Results
Let us check our email to see if the email was received. Awesome! We can clearly see that email was delivered successfully to the user’s inbox.
We can create more beautiful and custom HTML templates and manage our email marketing campaigns around them. In our next blog, we will be talking about how to track whether a user opens our emails or not. If you any doubts or appreciation for our team, let us know in the comments below.
Top comments (1)
Hi! I'm sure you will also find the information regarding google ranking check useful and relevant. With this seranking.com/google-ranking-check... tool, you have a lot more cool and useful features in front of you. These include Google Ads ranking checker, Google Maps for local rankings, search volume and traffic predictions, and more!