This workflow follows the Emailsend → HTTP Request 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": "CEO_MORNING_REPORT",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"value": "0 7 * * *"
}
]
}
},
"id": "cron-trigger",
"name": "Daily 7AM Trigger",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
240,
300
]
},
{
"parameters": {
"url": "https://your-app.com/api/ceo-report",
"options": {}
},
"id": "fetch-report",
"name": "Fetch CEO Report",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
460,
300
]
},
{
"parameters": {
"to": "your-email@example.com",
"subject": "\ud83d\ude80 HorseGPT CEO Report - {{ $json.date }}",
"message": "{{ $json.formattedReport }}",
"options": {}
},
"id": "send-email",
"name": "Send Email Report",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 2.1,
"position": [
680,
300
]
},
{
"parameters": {
"to": "your-phone-number",
"message": "\ud83d\ude80 HorseGPT CEO Report - {{ $json.date }}\n\n{{ $json.formattedReport }}"
},
"id": "send-sms",
"name": "Send SMS Report",
"type": "n8n-nodes-base.twilioSms",
"typeVersion": 1.1,
"position": [
680,
480
]
}
],
"connections": {
"cron-trigger": {
"main": [
[
{
"node": "fetch-report",
"type": "main",
"index": 0
}
]
]
},
"fetch-report": {
"main": [
[
{
"node": "send-email",
"type": "main",
"index": 0
},
{
"node": "send-sms",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"staticData": null,
"tags": [],
"triggerCount": 1,
"updatedAt": "2024-01-01T00:00:00.000Z",
"versionId": "1"
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
CEO_MORNING_REPORT. Uses httpRequest, emailSend, twilioSms. Scheduled trigger; 4 nodes.
Source: https://github.com/kinnon13/horse-ai/blob/f68643c9baf4cc9e25866c96312192ba4cb99330/n8n-workflows/CEO_MORNING_REPORT.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.
E-Décor - Support Client. Uses httpRequest, emailSend. Scheduled trigger; 5 nodes.
29-fluxo-caixa-projecao-semanal. Uses httpRequest, emailSend. Scheduled trigger; 4 nodes.
Workflow-Api-Health-Check. Uses httpRequest, emailSend. Scheduled trigger; 4 nodes.
This workflow is an improvement of this workflow by Greg Brzezinka.
N8N-Self-Updater. Uses ssh, emailSend, httpRequest. Scheduled trigger; 27 nodes.