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 a Viral AI Video Bot with n8n, Nano Banana 2 & Kling 3.0

I built an n8n workflow that turns any topic into a viral AI video in seconds — and sends it straight to Telegram. https://youtu.be/dIuvKKO0dUw What We're Building This workflow takes a text topic from Telegram, creates an AI image using Nano Banana 2, converts it into a video using Kling 3.0, and delivers the final result back to your Telegram — all automatically. What You Need An n8n …
Continue reading
Category AI Posted on

How to Setup & Use Clawdbot (OpenClaw): The Complete Guide

In this guide, I will show you how to setup and use Clawdbot - the viral AI personal assistant that has recently rebranded to OpenClaw (and was briefly known as Moltbot). If you’ve been looking for a tutorial to build a 24/7 digital employee that handles your tasks while you sleep, you’re in the right place. The internet went crazy over this tool because it's not just a chatbot; it's a proactive assistant that li…
Continue reading