When a new subscriber is added to your newsletter, this workflow tags them, sends an instant welcome, waits two days, and sends a value-packed follow-up. A lightweight drip campaign without an ESP automation upgrade.
{
"name": "New Subscriber Welcome Series",
"nodes": [
{
"id": "ws01aa",
"name": "New Subscriber",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
180,
300
],
"parameters": {
"httpMethod": "POST",
"path": "new-subscriber",
"responseMode": "onReceived"
}
},
{
"id": "ws02bb",
"name": "Welcome Email",
"type": "n8n-nodes-base.gmail",
"typeVersion": 2.1,
"position": [
380,
300
],
"parameters": {
"resource": "message",
"operation": "send",
"sendTo": "={{ $json.body.email }}",
"subject": "Welcome! Here is what to expect",
"message": "Thanks for subscribing! Every week you'll get one actionable tip.",
"options": {}
}
},
{
"id": "ws03cc",
"name": "Wait 2 Days",
"type": "n8n-nodes-base.wait",
"typeVersion": 1.1,
"position": [
580,
300
],
"parameters": {
"amount": 2,
"unit": "days"
}
},
{
"id": "ws04dd",
"name": "Follow-up Email",
"type": "n8n-nodes-base.gmail",
"typeVersion": 2.1,
"position": [
780,
300
],
"parameters": {
"resource": "message",
"operation": "send",
"sendTo": "={{ $('New Subscriber').item.json.body.email }}",
"subject": "Our most popular resource",
"message": "Here is the guide our readers love most: https://example.com/guide",
"options": {}
}
},
{
"id": "ws05ee",
"name": "Tag Onboarded",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 4.4,
"position": [
980,
300
],
"parameters": {
"operation": "appendOrUpdate",
"documentId": "YOUR_SHEET_ID",
"sheetName": "Subscribers",
"columns": {
"mappingMode": "defineBelow",
"value": {
"email": "={{ $('New Subscriber').item.json.body.email }}",
"status": "onboarded"
}
}
}
}
],
"connections": {
"New Subscriber": {
"main": [
[
{
"node": "Welcome Email",
"type": "main",
"index": 0
}
]
]
},
"Welcome Email": {
"main": [
[
{
"node": "Wait 2 Days",
"type": "main",
"index": 0
}
]
]
},
"Wait 2 Days": {
"main": [
[
{
"node": "Follow-up Email",
"type": "main",
"index": 0
}
]
]
},
"Follow-up Email": {
"main": [
[
{
"node": "Tag Onboarded",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {},
"meta": {}
}