100% Inbox Delivery

Can i send bulk email from a folder in google

Learn advanced techniques for can i send bulk email from a folder in google to maximize your outreach and engagement.

From a folder in Google, specifically Google Workspace or formerly G Suite, you can send mass emails by utilizing Google Sheets combined with Google Apps Script or the built-in feature in Gmail. There are two approaches. One involves using Google Sheets and Apps Script. The other approach is via the mail merge function in Gmail that makes use of an add-on.

Method 1: Using Google Sheets and Apps Script

Step 1: Excel Preparation of Contact List in Google Sheets

Open Google Sheets and create a new spreadsheet.

Make columns for the information such as Name, Email, Subject, and Message.

Insert all the details of each recipient into the respective columns.

Save the spreadsheet with the relevant name.

Click on Extensions > Apps Script in the menu.

Delete any code in the script editor and copy and paste the following code:

var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();

var startRow = 2; // Start at second row to skip headers

var numRows = sheet.getLastRow() - 1; // Number of rows to process

var dataRange = sheet.getRange(startRow, 1, numRows, sheet.getLastColumn());

var name = row[0]; // Name in the first column