Automate Your Invoices with n8n and Templated.io

invoice automation

Here’s the simple N8N automation I built that pulls invoice data from Google Sheets, creates a PDF using Templated.io, emails it to the client, and updates the sheet automatically.


🔗 Useful Links

Templated.io Sign-Up (50 Free Credits): Sign up

Download Workflow JSON:

Code Node JavaScript
// Get invoice number from the Google Sheet node
const invoiceNumber = $('Loop Over Items').first().json['Invoice number'];

for (const item of items) {
  if (item.binary && item.binary.data) {
    item.binary.data.fileName = `${invoiceNumber}.pdf`;
  }
}

return items;

⚙️ Tools Used

  • n8n
  • Templated.io
  • Google Sheets
  • Gmail / SMTP

🎥 Tutorial Video

Keep Reading

Category AI Posted on

How to Build an AI SaaS App with Claude Code (No Backend Code)

Building a full SaaS app used to mean weeks of backend setup — databases, authentication, payment logic, email automation, hosting. Today, tools like Claude Code make writing an app faster than ever, but for non-technical builders, the backend is still the hard part. In this guide, I'll show you exactly how I built Resume Fit — a production-ready, AI-powered resume optimization SaaS app — with login, Stripe payme…
Continue reading
Category AI Posted on

How to Remove Gemini Watermark for Free : From Both Images and Videos

If you create AI images or videos using Google Gemini or Google Flow, you already know the annoying watermark that comes stuck on every output — even on the paid plan. In this video, I show you a completely free tool that removes the Gemini watermark from both images and videos in just seconds, without losing any quality and without installing any software. Watch the full tutorial below to see exactly how it w…
Continue reading