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 →
{
"nodes": [
{
"name": "Morning reminder",
"type": "n8n-nodes-base.cron",
"notes": "Trigger very morning",
"position": [
220,
60
],
"parameters": {
"triggerTimes": {
"item": [
{
"hour": 6
}
]
}
},
"notesInFlow": true,
"typeVersion": 1,
"alwaysOutputData": true
},
{
"name": "format reminder",
"type": "n8n-nodes-base.functionItem",
"position": [
460,
60
],
"parameters": {
"functionCode": "\n// Creates message with todays date\nconst today = new Date()\nconst yesterday = new Date(today)\n\nyesterday.setDate(yesterday.getDate() - 1)\nconst message = `What did you do: ${yesterday.toISOString().split('T')[0]}`\n\nreturn {message};"
},
"typeVersion": 1
},
{
"name": "Send journal reminder",
"type": "n8n-nodes-base.telegram",
"position": [
700,
60
],
"parameters": {
"text": "={{$node[\"format reminder\"].json[\"message\"]}}",
"chatId": "666884239",
"additionalFields": {}
},
"credentials": {},
"typeVersion": 1
}
],
"connections": {
"format reminder": {
"main": [
[
{
"node": "Send journal reminder",
"type": "main",
"index": 0
}
]
]
},
"Morning reminder": {
"main": [
[
{
"node": "format reminder",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Send Automated Daily Reminders On Telegram. Uses functionItem, telegram. Scheduled trigger; 3 nodes.
Source: https://github.com/Zie619/n8n-workflows — 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.
Daily Journal Reminder. Uses functionItem, telegram. Scheduled trigger; 3 nodes.
A goal for 2022 is to write 1 thing I do each day. This workflow will automatically remind you on telegram to write something you did yesterday, optionally you can enable the second workflow which wil
MAIA - Health Check. Uses noOp, telegram, scheduleTrigger, googleSheets. Scheduled trigger; 7 nodes.
9AM IST AI Daily Digest (Arxiv + GitHub + News). Uses httpRequest, llm, telegram. Scheduled trigger; 6 nodes.
Safe Network Reconnaissance Automation. Uses executeCommand, readFile, telegram, notion. Scheduled trigger; 6 nodes.