Block 1 - 1. Daily Schedule Trigger
- Type / Role
- n8n-nodes-base.scheduleTrigger - scheduleTrigger
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
How It Works ️ This workflow systematically ensures you never miss sending an invoice reminder: 1. Daily Schedule Trigger: The workflow starts automatically at a set time each day (e.g., every m...
n8n-nodes-base.scheduletrigger, n8n-nodes-base.googlesheets, n8n-nodes-base.function, n8n-nodes-base.if, n8n-nodes-base.gmail, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Marth.
Original n8n.io sourceThis workflow systematically ensures you never miss sending an invoice reminder:
InvoiceID, ClientName, ClientEmail, Amount, DueDate, and Status.DueDate with the current date.Follow these steps carefully to get your "Automated Invoice Reminder" workflow up and running:
Import Workflow JSON:
Configure Daily Schedule Trigger:
Configure Read Invoice Data (Google Sheets):
YOUR_GOOGLE_SHEETS_CREDENTIAL_ID with the actual ID or name of your credential from your n8n credentials.YOUR_GOOGLE_SHEET_ID with the actual ID of your Google Sheet where invoice data is stored.Invoices!A:F) correctly covers all your invoice data. Crucially, ensure your Google Sheet has columns with exact names: InvoiceID, ClientName, ClientEmail, Amount, DueDate (in a parsable date format like YYYY-MM-DD), and Status (e.g., 'Pending', 'Paid').Configure Filter & Prepare Reminders (Function):
functionCode inside the node. Adjust the variable names (e.g., invoice.InvoiceID, invoice.DueDate) if your Google Sheet uses different column headers than the defaults assumed in the code.remindBeforeDays (e.g., 3 days before) and remindAfterDays (e.g., 7 days after) to adjust how many days before/after the due date reminders are sent.subjectPrefix and bodyText within the code to customize the reminder message for 'due soon' and 'overdue' invoices.Configure Send Invoice Reminder (Gmail):
YOUR_GMAIL_CREDENTIAL_ID with the actual ID or name of your credential from your n8n credentials.[email protected] with the email address you want the reminders to be sent from.={{ $json.subject }} and ={{ $json.body }}). You can further customize the HTML email template here if needed.Review and Activate:
YOUR_...) are replaced and settings are correct.Troubleshooting Tips: 💡
Function node is the place to debug. Use the 'Test Workflow' feature to inspect the data flowing into and out of this node.This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Automated invoice payment reminders with Google Sheets and Gmail |
|---|---|
| Complexity | intermediate |
| Nodes | 7 |
| Categories | Invoice Processing |
| Author | Marth |
| Published | 23 Jul 2025 |
Use the JSON export at /data/workflows/6316/6316.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
How It Works ️ This workflow systematically ensures you never miss sending an invoice reminder: 1. Daily Schedule Trigger: The workflow starts automatically at a set time each day (e.g., every m...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Invoice Processing use case.