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": "Yard Stats: Daily Report",
"nodes": [
{
"id": "1",
"name": "Daily at 7am",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
250,
300
],
"parameters": {
"rule": {
"interval": [
{
"field": "days",
"triggerAtHour": 7
}
]
}
}
},
{
"id": "2",
"name": "Call Report API",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
450,
300
],
"notes": "ingest-worker now owns the query + HTML-building logic (report.py) -- this replaces what used to be two Postgres query nodes plus a Build Report Code node here. Also fixes the report-size problem: report.py generates a small on-the-fly thumbnail per row instead of embedding the full-quality crop_image_base64 twice (once for the visible thumbnail, once again in the lightbox), which is what blew a 2-hour window up to 42MB.",
"notesInFlow": true,
"parameters": {
"method": "GET",
"url": "http://REPLACE_WITH_INGEST_WORKER_HOST:REPLACE_WITH_INGEST_WORKER_PORT/reports/generate",
"sendQuery": true,
"queryParameters": {
"parameters": [
{
"name": "hours",
"value": "24"
}
]
},
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"options": {}
},
"credentials": {
"httpHeaderAuth": {
"name": "<your credential>"
}
}
},
{
"id": "7",
"name": "Convert Report to File",
"type": "n8n-nodes-base.convertToFile",
"typeVersion": 1.1,
"position": [
1050,
300
],
"parameters": {
"operation": "toText",
"sourceProperty": "html",
"options": {
"fileName": "yard-stats-daily-report.html",
"mimeType": "text/html"
}
}
},
{
"id": "5",
"name": "Send Email",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 2.1,
"position": [
1250,
200
],
"parameters": {
"fromEmail": "REPLACE_WITH_FROM_ADDRESS",
"toEmail": "REPLACE_WITH_TO_ADDRESS",
"subject": "=Yard Stats Daily Report -- {{ $now.format('yyyy-MM-dd') }}",
"emailType": "html",
"html": "={{ $json.html }}",
"options": {
"attachments": "data"
}
},
"credentials": {
"smtp": {
"name": "<your credential>"
}
}
},
{
"id": "6",
"name": "Send Telegram",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1.2,
"position": [
1250,
400
],
"parameters": {
"resource": "file",
"operation": "sendDocument",
"chatId": "REPLACE_WITH_CHAT_ID",
"binaryData": true,
"binaryPropertyName": "data",
"caption": "={{ $json.caption }}"
},
"credentials": {
"telegramApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Daily at 7am": {
"main": [
[
{
"node": "Call Report API",
"type": "main",
"index": 0
}
]
]
},
"Call Report API": {
"main": [
[
{
"node": "Convert Report to File",
"type": "main",
"index": 0
}
]
]
},
"Convert Report to File": {
"main": [
[
{
"node": "Send Email",
"type": "main",
"index": 0
},
{
"node": "Send Telegram",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
}
}
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.
httpHeaderAuthsmtptelegramApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Yard Stats: Daily Report. Uses httpRequest, emailSend, telegram. Scheduled trigger; 5 nodes.
Source: https://github.com/shuricksumy/frigate-yard-stats/blob/main/n8n/daily-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.
AI Tech Watcher. Uses rssFeedRead, httpRequest, telegram, emailSend. Scheduled trigger; 17 nodes.
Recover missed opportunities automatically with this n8n automation template. The workflow connects with Calendly, identifies no-show meetings, and instantly sends personalized Telegram messages encou
Tired of shelling out big bucks for newsletters?
SAP Sample. Uses httpRequest, telegram, emailSend, CUSTOM. Scheduled trigger; 12 nodes.
*Tags: Crypto, Currency Exchange, Alpha Vantage API, Google Sheets*