This workflow follows the Gmail → Google Sheets recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Automated Bulk Emailer",
"active": false,
"settings": {},
"id": "1",
"nodes": [
{
"parameters": {
"triggerTimes": [
{
"hour": 9,
"minute": 0
}
]
},
"name": "Daily 9AM Trigger",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"operation": "getMany",
"sheetId": "YOUR_SPREADSHEET_ID_HERE",
"sheetName": "Sheet1",
"range": "A2:C",
"options": {
"useFirstRowAsHeader": true,
"returnAll": true
}
},
"name": "Get Contacts",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 1,
"position": [
450,
300
]
},
{
"parameters": {
"batchSize": 1
},
"name": "Split In Batches",
"type": "n8n-nodes-base.splitInBatches",
"typeVersion": 1,
"position": [
650,
300
]
},
{
"parameters": {
"keepOnlySet": true,
"keepEmpty": false,
"values": {
"string": [
{
"name": "toEmail",
"value": "={{$json[\"Email\"]}}"
},
{
"name": "toName",
"value": "={{$json[\"Name\"]}}"
},
{
"name": "company",
"value": "={{$json[\"Company\"]}}"
},
{
"name": "subject",
"value": "Hi {{$json[\"Name\"]}}, here's an update from {{$json[\"Company\"]}}"
},
{
"name": "htmlBody",
"value": "<p>Hey {{$json[\"Name\"]}},</p><p>News from {{$json[\"Company\"]}}\u2026</p><p><a href=\\\"https://example.com/unsubscribe?email={{$json[\"Email\"]}}\\\">Unsubscribe</a></p>"
}
],
"number": [],
"boolean": []
}
},
"name": "Set Email Data",
"type": "n8n-nodes-base.set",
"typeVersion": 1,
"position": [
850,
300
]
},
{
"parameters": {
"fromEmail": "you@yourdomain.com",
"toEmail": "={{$node[\"Set Email Data\"].json[\"toEmail\"]}}",
"subject": "={{$node[\"Set Email Data\"].json[\"subject\"]}}",
"htmlBody": "={{$node[\"Set Email Data\"].json[\"htmlBody\"]}}"
},
"name": "Send Email",
"type": "n8n-nodes-base.gmail",
"typeVersion": 1,
"position": [
1050,
300
],
"credentials": {
"gmailOAuth2Api": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"operation": "append",
"sheetId": "YOUR_SPREADSHEET_ID_HERE",
"sheetName": "Logs",
"range": "A2:C",
"options": {}
},
"name": "Log Results",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 1,
"position": [
1250,
300
]
}
],
"connections": {
"Daily 9AM Trigger": {
"main": [
[
{
"node": "Get Contacts",
"type": "main",
"index": 0
}
]
]
},
"Get Contacts": {
"main": [
[
{
"node": "Split In Batches",
"type": "main",
"index": 0
}
]
]
},
"Split In Batches": {
"main": [
[
{
"node": "Set Email Data",
"type": "main",
"index": 0
}
]
]
},
"Set Email Data": {
"main": [
[
{
"node": "Send Email",
"type": "main",
"index": 0
}
]
]
},
"Send Email": {
"main": [
[
{
"node": "Log Results",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
gmailOAuth2Api
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Automated Bulk Emailer. Uses googleSheets, gmail. Scheduled trigger; 6 nodes.
Source: https://gist.github.com/Harris786x/53c671580c61594fe382503a52f93430 — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
YOUR_ID 4. Uses gmail, googleDrive, googleSheets, httpRequest. Scheduled trigger; 53 nodes.
special-day-email-sender. Uses googleSheets, gmail. Scheduled trigger; 43 nodes.
Looking for a way to track GitHub bounty issues automatically and get notified in real time? This GitHub Bounty Tracker workflow monitors repositories for issues labeled 💎 Bounty, logs them in Google
This workflow automatically sends a beautifully designed HTML newsletter every Sunday at 8 AM, featuring products currently on sale from your Algolia-powered e-commerce store.
This n8n template demonstrates how to build a Auto Lead Gen & Outreach System for Local Businesses specifically designed to help businesses that don’t have a website yet.