Chase unpaid invoices automatically
The goal: every weekday morning, find the invoices that are now overdue and email each customer a friendly reminder — without anyone remembering to do it.
This is a four-step automation. Each step below links down to its full reference page, so you can see every field as you build.
-
Run it on a schedule. Start the flow with a Schedule (Cron) trigger. Set it to every weekday at 08:00 — no one has to press anything.
-
Find the overdue invoices. Add a Find records step that returns the invoices whose due date has passed and whose status is still unpaid.
-
Go through them one by one. Wrap the next step in a For each loop over those records. Inside the loop you can reference the current invoice with
loop.item. -
Send the reminder. Inside the loop, add a Send email step. Point
toat the customer’s address, and write abodythat mentions the invoice number and amount using{{ loop.item.* }}references.