Communication & Messaging
Daily Journal Reminder
Daily Journal Reminder
Scheduled
Medium
3
Nodes
Scheduled
Trigger
Medium
Complexity
7/22/2025
Added
Workflow Overview
Total Nodes
3
Node Types
0
Workflow JSON
1.7 KB
{
"id": 1,
"name": "Daily Journal Reminder",
"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": "n8...Showing first 1000 characters. Click "Expand" to view the full JSON.