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": "NewsWave - Daily Newsletter Sender",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"expression": "0 8 * * *"
}
]
}
},
"id": "daily-schedule",
"name": "Daily at 8 AM",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
240,
300
]
},
{
"parameters": {
"url": "http://localhost:3001/api/stats",
"options": {}
},
"id": "check-subscribers",
"name": "Check Subscribers",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
480,
300
]
},
{
"parameters": {
"conditions": {
"conditions": [
{
"leftValue": "={{$json.newsletterSubscribers}}",
"rightValue": 0,
"operator": {
"type": "number",
"operation": "gt"
}
}
]
}
},
"id": "has-subscribers",
"name": "Has Subscribers?",
"type": "n8n-nodes-base.if",
"typeVersion": 2,
"position": [
720,
300
]
},
{
"parameters": {
"method": "POST",
"url": "http://localhost:3001/api/newsletter/send-all",
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "x-api-key",
"value": "={{$env.N8N_WEBHOOK_KEY}}"
},
{
"name": "Content-Type",
"value": "application/json"
}
]
},
"sendBody": true,
"bodyParameters": {
"parameters": []
},
"options": {}
},
"id": "send-newsletters",
"name": "Send All Newsletters",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
960,
200
]
},
{
"parameters": {
"message": "=\ud83d\udce7 NewsWave Newsletter: Sent to {{$node['Check Subscribers'].json.newsletterSubscribers}} subscribers at {{new Date().toLocaleTimeString()}}",
"options": {}
},
"id": "log-newsletter-sent",
"name": "Log Newsletter Sent",
"type": "n8n-nodes-base.noOp",
"typeVersion": 1,
"position": [
1200,
200
]
},
{
"parameters": {
"message": "\u2139\ufe0f NewsWave Newsletter: Skipped - 0 subscribers",
"options": {}
},
"id": "log-no-subscribers",
"name": "Log No Subscribers",
"type": "n8n-nodes-base.noOp",
"typeVersion": 1,
"position": [
960,
400
]
},
{
"parameters": {
"respondWith": "json",
"responseBody": "{\"message\": \"Newsletter send triggered manually\"}"
},
"id": "manual-webhook",
"name": "Manual Trigger Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
240,
500
]
},
{
"parameters": {
"url": "http://localhost:3001/api/news?limit=1",
"options": {}
},
"id": "check-has-news",
"name": "Check News Available",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
480,
120
]
}
],
"connections": {
"Daily at 8 AM": {
"main": [
[
{
"node": "Check News Available",
"type": "main",
"index": 0
}
]
]
},
"Check News Available": {
"main": [
[
{
"node": "Check Subscribers",
"type": "main",
"index": 0
}
]
]
},
"Check Subscribers": {
"main": [
[
{
"node": "Has Subscribers?",
"type": "main",
"index": 0
}
]
]
},
"Has Subscribers?": {
"main": [
[
{
"node": "Send All Newsletters",
"type": "main",
"index": 0
}
],
[
{
"node": "Log No Subscribers",
"type": "main",
"index": 0
}
]
]
},
"Send All Newsletters": {
"main": [
[
{
"node": "Log Newsletter Sent",
"type": "main",
"index": 0
}
]
]
},
"Manual Trigger Webhook": {
"main": [
[
{
"node": "Check Subscribers",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
},
"versionId": "1",
"tags": [
"newswave",
"newsletter"
],
"notes": "Sends personalized AI-generated newsletters daily at 8 AM to all subscribed users. Each user gets articles tailored to their preferences, with AI-written summaries and direct links back to NewsWave."
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
NewsWave - Daily Newsletter Sender. Uses httpRequest. Scheduled trigger; 8 nodes.
Source: https://github.com/byrnai0/ai-newsletter/blob/960353e1a59287400cb04e8e886cc0f9336a2553/n8n-workflows/newsletter-sender.json — 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.
Birthday Automation - Production (Fixed). Uses stopAndError, httpRequest, emailSend, bannerbear. Scheduled trigger; 86 nodes.
This template runs two scheduled workflows to govern Microsoft Entra ID (Azure AD) guest accounts by detecting stale users via Microsoft Graph, staging deletions in SharePoint with a 72-hour window, n
Jira-Allure-Auto-Qa. Uses httpRequest, jira. Scheduled trigger; 68 nodes.
Spotify-Sync-Surrealdb-V1. Uses httpRequest, n8n-nodes-surrealdb, spotify. Scheduled trigger; 62 nodes.
As n8n instances scale, teams often lose track of sub-workflows—who uses them, where they are referenced, and whether they can be safely updated. This leads to inefficiencies like unnecessary copies o