# Trade Magnet — Full Content > Trade Magnet helps tradies save time, cut admin, and win more work with powerful automations, a smart CRM, and done-for-you setup. This file concatenates the full text of Trade Magnet's guides, blog articles, and podcast show notes for LLM ingestion. For the curated link index, see /llms.txt. Contact: hello@trademagnet.com.au · +61 482 091 196. --- # Guides --- ## Guide: The One Automation That Pays For Itself: Website Leads into ServiceM8 URL: https://trademagnet.com.au/resources/guides/this-one-workflow Every lead you type into ServiceM8 by hand costs about nine minutes, done properly. Across every enquiry, every week, all year, a busy shop quietly burns around $9,072 a year on copy-paste. This guide puts your real figure on the board, then hands you the workflow that does it for you. Chapter 01 · The maths What manual lead entry actually costs you "It's only five minutes" is the most expensive sentence in a small business. And it isn't even true. By the time someone has read the enquiry, searched ServiceM8 to check the client isn't already in there, created them, added the contact and raised the job, you're closer to nine minutes a lead, done properly. That time feels free because no invoice ever lands for it. But it's paid for, it just hides inside a wage. So let's drag it into the daylight. Punch in your own numbers and watch the real annual figure appear. Your numbers Website leads a week enquiries you enter by hand Minutes to enter one lead read it, dedupe-check, create client, add contact, raise job min Cost of that time, per hour $ Base wage $30 Fully-loaded admin $45 Owner / charge-out $80 Working weeks a year 52 less holidays Manual lead entry is costing you $9,072 / year That's pure admin time spent re-typing information a computer could capture for nothing. Roughly 27 working days, over five weeks of someone's year, gone on copy-paste. Every dollar of it is recoverable. 202 hours a year $189 every week 27 working days How it's worked out: leads/week × minutes ÷ 60 = hours a week, × your hourly cost = dollars a week, × working weeks = the figure above. Nothing fancy, just the time you already spend. Run the defaults and you can follow every step: a business taking 28 web leads a week , 9 minutes to handle each one properly, at $45 an hour fully loaded, across 48 working weeks . That's 4.2 hours a week, $189 a week, and $9,072 a year . No worst-case, no fudging. Just the lead admin you're already paying for, added up for the first time. It was never five minutes The reason the number is bigger than you'd guess is that "entering a lead" is never one action. Done properly, every single enquiry is a little checklist: Read and make sense of the enquiry (~1 min) Search ServiceM8 to see if the client already exists , and read the matches (~1–2 min) Create the client if they're new: name, address, phone (~1–2 min) Add the contact : name, email, mobile, mark them primary (~1 min) Raise the job and paste the enquiry into the description (~1–2 min) Send a quick acknowledgement so the lead doesn't go cold (~1–2 min) Add it up and nine minutes is honest, arguably generous. Now look at that list again, because it's also the exact job the workflow in the next chapter does for you, every step, in about thirty seconds, for a fraction of a cent. Drop minutes to five if you rush it; the figure's still thousands. Why $45 an hour, not $30? The default rate isn't the wage on the payslip. An Australian admin or office assistant sits around $28–$30 an hour in base pay, but that's not what they cost you. Once you add the 12% super guarantee, workers compensation, payroll tax, and leave loading, the genuine cost to the business lands roughly 25–45% higher , call it $40–$45 an hour fully loaded . That's the honest number, so it's the one we default to. Two other rates are one tap away. $30 if you only want the raw wage. And $80 if the person doing data entry is you or someone billable, because then the real cost isn't their wage at all, it's the quoting, the site visit, or the invoice they didn't get to instead. The point isn't the exact dollar. It's that the number is never zero, it recurs every single week, and it buys you nothing. A lead typed in by hand and a lead captured automatically land in ServiceM8 looking identical. One of them just cost you five minutes you'll never invoice. Chapter 02 · The build The workflow that does it for you Now the fun part. We're going to replace those nine minutes with a workflow that runs in about thirty seconds and never forgets a step. It's built in n8n and talks to ServiceM8 over plain HTTP. Import the JSON at the end of this guide and you're most of the way there. We're triggering it from email, because that's how leads actually turn up. A website form notification, a Facebook lead, a "can you quote this?" from a regular, even a forwarded enquiry: nearly all of it lands in an inbox. So the workflow watches a Gmail mailbox, and the moment a lead arrives it captures the sender, the message and any attachments, has AI write a tidy job description, files the whole lot into ServiceM8 as a job, then emails the customer back a branded confirmation with their job number. flowchart TD A([Lead email arrives]) --> B[Read & map the email] B --> C[Create client + company contact] C --> D[Look up job category] D --> E[AI writes the job description] E --> F[Raise the job] F --> G[Fetch the job number] G --> H[Add the job contact] H --> I[Upload any attachments] H --> J[Reply to the customer with their job number] Step by step 1 Catch the email A Gmail Trigger fires on each new message. Point it at a label or a filtered inbox so only real leads set it off. Node: Gmail Trigger 2 Read and map it A Code node parses the lead straight out of the email body, the form's table of name, phone, email, address and the issue, into clean fields. This is the one spot you tailor to your own lead emails. Node: Normalize Lead 3 Create the client + contact A POST creates the client , then another adds the company contact against it. No duplicate-checking here, we keep this version deliberately simple (more on that below). Create Client → Company Contact 4 Look up the category A quick GET finds your job category by name and grabs its UUID, so the job lands in the right bucket on your dispatch board instead of "Uncategorised". Node: Look Up Category 5 AI writes the description An OpenAI node reads the whole enquiry and turns the customer's ramble into a clean, plain-text job description, so the job reads like one of yours instead of a pasted email. Node: Generate Description 6 Raise the job Create the job with that description and the category, fetch its job number , then attach a job contact so whoever's dispatched has the customer's details on the card. Create Job → Get Job → Job Contact 7 File the attachments The form drops uploaded photos in as links, so a small loop downloads each one, creates the attachment record and uploads it to the job. The customer's photos end up right on the job. Split → Create Record → Upload 8 Reply to the customer A Gmail send goes to the customer's own email (parsed from the form): a branded HTML email with your logo, their new job number, and a tidy summary of what they submitted, so they know they've been heard within seconds. Node: Send Confirmation The bit everyone gets wrong: attachments are a two-step You can't just push a file at a job in ServiceM8. An attachment is two separate calls, and they have to happen in order. First you create the attachment record , the metadata that says "a file named X, of type Y, belongs to this job". That gives you an attachment UUID. Then you upload the actual bytes to that record's .file endpoint. Skip the first step and there's nothing to upload into; the file has nowhere to live. # Step 1: create the attachment RECORD (metadata only) POST https://api.servicem8.com/api_1.0/ attachment.json related_object = job related_object_uuid = {{ job_uuid }} attachment_name = site-photo.jpg file_type = .jpg # Step 2: upload the actual FILE to that record's .file endpoint POST https://api.servicem8.com/api_1.0/ attachment/{{ uuid }}.file (the binary file as the body) Web forms usually list the customer's uploads as links in the email body rather than as email attachments, so a small Code node fans each link into its own item, downloads the file, then runs the two-step once per file. One photo or ten, it just works. (If your leads carry real email attachments instead, the Gmail trigger can download those directly.) Closing the loop: the customer hears back instantly The last step is the one customers actually notice. A small heads-up matters here: the lead email comes from the form's notification address, not the customer, so we don't reply to it. Instead we send a fresh email to the customer's real address (the one we parsed out of the form body). We fetch the job's friendly number (the generated_job_id , which only comes back when you read the job after creating it), then send a branded HTML confirmation: your logo up top, a thank-you, their job number in black and white, and their submission played back in a clean table. A lead that emails at 9pm gets a real acknowledgement at 9pm, while the job's already sitting in ServiceM8 waiting for you. Talking to ServiceM8: one header, fields you can read No OAuth dance. ServiceM8's private API uses a single API key. Generate one under Settings → API Keys , create one Header Auth credential in n8n, and point every ServiceM8 node at it: # In n8n: Credentials → Header Auth Name: X-API-Key Value: your_servicem8_api_key And a deliberate choice in how the calls are built: every request uses Send Body → Using Fields Below and Send Query Parameters , the same boxes you'd fill in by hand. Nothing is buried in a raw JSON blob, so you can open any node and read exactly what it sends. Looking up the category, for instance, is one GET with a filter: # Find the category UUID by name GET https://api.servicem8.com/api_1.0/ category.json ? $filter =name eq ' Service Call ' # -> use the first result's uuid as the job's category_uuid Why no duplicate-check? To keep this build easy to follow. Every email becomes a fresh client, contact and job. If you'd rather match returning customers and avoid duplicate clients, add a lookup step before Create Client : search the client by exact name first, and only create one if there's no match. Same destination, one extra branch. All up: a Gmail trigger, a couple of Code nodes, a handful of HTTP calls built from plain form fields, one AI node and a branded reply. That's the whole thing. It's genuinely simple, which is exactly why it's worth doing, the payback in the calculator above starts the day you switch it on. Take it with you Grab the workflow and switch it on Here's the actual n8n workflow from this guide, ready to import. In n8n, open a new workflow, choose Import from File , and drop this in. Add your Gmail and ServiceM8 credentials, set your job category, and you're live. The setup notes are baked into the workflow as a sticky note so you won't have to come back here. n8n workflow · email to job management lead-email-to-job-management.json Gmail → client + both contacts → category → AI job description → raise job → upload attachments → branded reply Download Our example wires it into ServiceM8, but the pattern is generic, point the final steps at whatever job-management system you run. The full guide is also available as a print-ready PDF from the Downloads button, bottom-right. What next Want this running for your business? Trade Magnet builds and self-hosts automations exactly like this one: leads into ServiceM8, quotes out the door, AI dropped in where it earns its keep, with the hosting, credentials and error handling done properly. If you'd rather have it built, wired up and watched over for you, get in touch. trademagnet.com.au → New to n8n? Start free at n8n.io , self-hosted or on n8n Cloud. Then see why n8n isn't dead and watch Claude build a ServiceM8 form through a custom n8n MCP. --- ## Guide: n8n vs Claude Code: Is n8n Dead? 5 Reasons It Isn't URL: https://trademagnet.com.au/resources/guides/n8n-not-dead The take going around: n8n is dead, just use Claude Code. It confuses a builder for a runtime. Claude Code is an agentic AI harness that writes code, brilliant at building, but it hosts nothing and runs nothing once you close the session. n8n is the platform your automations actually live on: hosted, connected, triggered, 24/7. Here are five reasons it's still king, and how to point Claude Code at it instead of pretending it's a replacement. Chapter 01 n8n vs. Claude Code: what each one actually is The whole "n8n is dead" argument falls apart the moment you define the two things being compared. They're not rivals in the same category, they're different layers of the stack. n8n: a workflow automation & orchestration platform n8n is where your automations live and run . It hosts them, holds the connections to your other tools, listens for events, and executes the steps, on a server, around the clock, the same way every time. It's the orchestration layer: the thing that makes a bunch of API calls behave like one reliable, repeatable process. Claude Code: an agentic AI harness Claude Code is an LLM wrapped in tools, an AI agent that can read, write, and run code. It's an extraordinary builder : describe what you want and it'll write the script, wire the logic, debug it with you. But that's where it stops. It doesn't host your automation. It doesn't sit on a server listening for webhooks. It doesn't manage your OAuth tokens or run your workflow at 6am while you sleep. It's invoked , it builds, and it leaves. The category error: comparing n8n to Claude Code is comparing a building to the architect. The architect designs brilliantly, but you don't live in a blueprint. You need the thing that's actually standing up, with the lights on, 24/7. Side by side Claude Code n8n What it is Agentic AI coding harness Workflow automation / orchestration platform Its strength Building, writes code & logic Running, hosts & executes, 24/7 Where it lives Your session / terminal A server (cloud or self-hosted) Persistence Ephemeral, gone when you close it Always-on, listening for events Connections / auth You own all the plumbing 400+ integrations, credentials managed How it acts Invoked, you ask Triggered, the world fires it So this isn't "which one wins." It's: Claude Code builds; n8n runs. The next five chapters are the concrete reasons that "runs" layer isn't going anywhere. The five reasons, up front Hosting : the always-on runtime your automations live on Third-party connections : integrations + credential/OAuth management, baked in Error handling : execution logs + dedicated error-handling nodes Self-hosting : open source, your infra, scalable, sandboxed Custom nodes : build your own, ship a UI to clients Chapter 02 · Reason 1 Hosting: your automations have to live somewhere Say Claude Code builds you a beautiful automation. Now what? Where does it run ? You're not going to leave it executing on your laptop with a port forward open to the internet, praying the machine never sleeps. That's not an automation. That's a liability. An automation is an entire package: code, triggers, schedule, state. All of it has to live on a computer that's always on: a server in the cloud, or one you host yourself. That's what n8n is. It's the hosting environment for your automations. Build with whatever you like; n8n is where the thing actually lives and runs. What "hosted" actually buys you Hosting isn't just "a box that's switched on." It's everything that makes an automation trustworthy in production: Always-on triggers. Webhooks land, schedules fire, app events arrive, 24/7, whether or not anyone's watching. An agent in a session has no inbox, no cron, no open port. A real address. A stable, public endpoint for your webhooks, not a tunnel to your laptop that dies the moment you shut the lid. One place for everything. Credentials, run history, and state all live in the one hosted instance, not scattered across whatever machine happened to run the job. And because every run happens on that always-on server, every run gets captured, which is exactly what makes the next reason possible. 24/7 Claude Code is invoked; n8n is triggered. You ask an agent. The world fires a hosted workflow, while you're asleep, on a job, or on holiday. The one-liner: Claude Code builds the automation; n8n is the address it lives at. Code with no home isn't infrastructure. It's a demo. Chapter 03 · Reason 2 Third-party connections: the part everyone underestimates n8n ships with an enormous catalogue of ready-made connections, 400+ apps, from ServiceM8 and Xero to Google, Stripe, Slack, and SMS gateways. Tap one, authenticate once, and it's wired in. That convenience hides how much hard work it's doing for you. If you've ever tried to build your own connector to a third-party API, you already know: it is no mean feat. Especially anything using OAuth 2.0: you're suddenly responsible for the token dance, storing refresh tokens, refreshing access tokens before they expire, handling revocation, and retrying the calls that fail because of it. It's fiddly, it's easy to get subtly wrong, and it's the kind of bug that only shows up at 2am three weeks later when a token quietly expires. This is what n8n does best. OAuth 2.0 flows, credential storage, automatic token refresh, all baked in. You authenticate once; n8n manages the lifecycle. You never write token-refresh code again. Why this matters against "just use Claude Code" Claude Code can absolutely write the code to call an API. But the moment it does, you own all of it, the secret storage, the OAuth refresh, the retry logic, the place those credentials live securely so they're not sitting in a prompt or a plaintext file. n8n gives you that as a managed, reusable layer: store a credential once, use it across every workflow, rotate it in one place. Credentials, vaulted & reused. Not pasted into prompts or hard-coded, stored once, referenced everywhere. OAuth 2.0, handled. The token lifecycle is n8n's problem, not yours. Hundreds of integrations. The connector you need almost certainly already exists, and if it doesn't, see Reason 3 and Reason 5. Chapter 04 · Reason 3 Error handling & execution logs: receipts and a safety net Real automations fail. APIs time out, tokens expire, a supplier's server has a bad morning. The question isn't whether something breaks. It's whether you find out, whether it recovers, and whether you can prove what happened. n8n gives you all three out of the box. Execution logs: every run, on the record Every execution n8n runs is recorded. Open execution #3,812 from three weeks ago and see the exact data that flowed through each node: what ran, what failed, what the payload looked like at every step. You can re-run from a point, replay with pinned data, and answer the question every operator eventually asks: "did the customer actually get that SMS?" With proof, not a guess. Error handling nodes: resilience built in Retry on fail. A flaky API call retries automatically, with backoff and no extra code. Continue on fail. One bad record doesn't kill the whole batch; the workflow keeps going and you deal with the stragglers separately. Error Trigger workflows. A dedicated error workflow catches any failed execution and does something about it: text you, log it, or park the payload for a retry. 404 Failure is a feature you design for, not a surprise. n8n assumes things will break and gives you the retries, branches, and alerts to handle it. That's the unglamorous 80% of real automation. Why this beats "just use Claude Code": a one-shot script that fails just… fails. No inspectable history, no automatic retry, no alert, unless you build all of it yourself. n8n hands you observability and resilience as table stakes. The one-liner: n8n doesn't just run your automation; it remembers every run and catches its own failures. That's the difference between a script and a system. Chapter 05 · Reason 4 Self-hosting: why n8n always beat Make This is the one that separates n8n from closed tools like Make.com: you can self-host it. It's open source. You can run it on your own infrastructure, fork it, even rebuild it from scratch if you really wanted to. For a hobbyist that's a nice-to-have. For an AI agency that's serious about this, it's the whole game: you own the platform, the data, and the ceiling. What self-hosting unlocks Open source. No black box. Inspect it, extend it, fork it. You're not renting capability you can lose. Environment variables galore. Out of the box you get a huge surface of config to tune behaviour, security, and limits to your setup. Sandboxing. Run code in controlled, sandboxed environments. This matters once you're executing custom logic for clients. Real scale (queue mode). Run with workers backed by Redis and Postgres so many workflows execute concurrently instead of fighting over one process. This is how you go from "a few automations" to "a platform." The honest caveat: some enterprise features are gated behind a paid licence (SSO, certain RBAC/scaling niceties). But the open-source core does an enormous amount. Be straight about the line so the argument holds against a sceptic. The setup the author runs is a self-hosted instance in queue mode : Redis + Postgres + worker processes, so multiple workflows run at once, reliably, on infrastructure that's fully under his control. That's not a toy. That's production. Self-hosting is the door. And behind it is the single most underrated capability in the whole platform, which is Reason 5. Chapter 06 · Reason 5 Custom nodes: the pièce de résistance Once you self-host, the ceiling lifts entirely: you can build your own custom nodes. Not just inline code in a Code node, but a proper, reusable node that shows up in the palette like any built-in one, with its own inputs, its own settings panel, its own polish. And here's the part worth sitting with. This is exactly the kind of thing the "Claude Code replaces everything" crowd is teaching you to build: bespoke agents and tools, wired together with custom frameworks and Python scripts. n8n gives you a framework to do the same thing, except the result is a node: you can run any execution you want inside it, and wrap it in a clean UI you can hand to a client. ∞ Anything you can script, you can ship as a node. Reusable, configurable, slotted into the orchestration, with a UI a non-technical client can actually use. That's the difference between a clever script and a product. Why this kills the "n8n is limiting" jab No capability gap. If the logic can be written, it can be a node. The platform stops being a constraint. Reusable, not one-off. Build the node once; drop it into every client's workflows. Client-ready UI. Your custom logic gets a proper settings panel, not a wall of code the client has to fear. The reframe: the custom-agent skills the influencers are selling aren't a reason to ditch n8n; they're a reason to build better n8n nodes . Which is exactly where the next chapter goes. Chapter 07 Stop demonising it: leverage Claude Code with n8n Here's the turn. None of this is anti-AI. The smart move isn't to pick a side; it's to use the best builder ever made to build for the best runtime ever made. Claude Code and n8n aren't rivals; they're a supply chain. Point the agent at the platform and you go faster than either could alone. Three ways to put them together Build custom nodes with Claude Code. The custom node from Reason 5 is just code, which is exactly what Claude Code is great at writing. Have it scaffold the node, wire the inputs, debug the execution. The agent builds; n8n hosts and runs the result. Build whole workflows with a skill. Give Claude Code a skill that knows the n8n workflow JSON format, describe the automation in plain English, and it produces a workflow you import, copy, paste, done. Wire it up over MCP. Expose n8n to Claude as an MCP server and it can build and manage workflows directly. We do exactly this in the ServiceM8 Forms guide : Claude builds a ServiceM8 form end to end through a custom n8n MCP. Same pattern, applied to your own automations. The synthesis: Claude Code designs and writes ; n8n hosts and runs . Use the agent to author for the platform: custom nodes, full workflows, or over MCP. That's the workflow the "n8n is dead" crowd never shows you. Chapter 08 The verdict: long live n8n So, is n8n dead? No. The people saying it are comparing a builder to a runtime and calling the runtime obsolete because the builder got smarter. Claude Code got dramatically better at the part n8n was never trying to be: writing the automation. It got no better at the part n8n exists to do: hosting it, connecting it, and running it , reliably, on infrastructure you control. The five reasons, in one breath Hosting : your automations need an always-on home; Claude Code isn't one. Connections : 400+ integrations with OAuth and credentials managed for you. Error handling : execution logs, retries, and error-trigger workflows. Self-hosting : open source, your infra, scalable, sandboxed. Custom nodes : build your own and ship a UI to clients. And the headline flips: AI doesn't kill n8n; it makes it more valuable. You've got the best workflow-author ever built sitting on top of the most flexible runtime, with a brain you can drop into any node that needs one. That's the crown on the thumbnail. n8n is still king; it just hired the sharpest advisor it's ever had. ♛ Claude Code builds. n8n runs. Anyone telling you to throw out the runtime has never had to keep one alive in production. If you remember one line: Claude Code is invoked and builds; n8n is triggered and runs. Different jobs. You want both. What next Want n8n + AI wired up for your business? Trade Magnet builds and self-hosts n8n automations, custom nodes, third-party integrations, and AI dropped in exactly where it earns its keep, with the hosting, credentials, and error handling done properly. If you've watched the video and want this running for your account, get in touch. trademagnet.com.au → New to n8n? Start free at n8n.io , self-host it or use n8n Cloud. Then watch the ServiceM8 Forms guide to see Claude build an automation through a custom n8n MCP. --- ## Guide: Master ServiceM8 Forms: Build & Automate with AI URL: https://trademagnet.com.au/resources/guides/servicem8-forms Forms in ServiceM8 are powerful (JSAs, SWMS, sign-offs, inspection reports, contract variations) but building them is fiddly: Word merge fields, Wingdings checkboxes, slug rules, conditional questions. This guide walks every step from your first form to AI builds it for me, in the same order as the video. Chapter 01 Forms are great. Building them is a pain in the ass. If you run a trade or service business on ServiceM8, forms are how the field becomes paperwork. Compliance reports, JSAs, SWMS, take-5s, inspection sheets, sign-off sheets, contract variations, all of it. They run on the iPad in front of the customer and they print as a PDF that lands straight in the job. (ServiceM8's own intro: Forms Overview .) The catch: the building process is splattered across three places. The questions live inside ServiceM8. The look-and-feel of the output PDF lives in a Microsoft Word template. The connection between them is a system of merge fields , slugified codes you have to type into the Word doc by hand, and one typo means the field renders blank. And anything advanced, conditional questions, tickbox checkmarks, calculated totals, uses real Word field syntax with Wingdings glyphs. 8 question types · 5 dynamic-field namespaces · one unavoidable manual upload · and a Wingdings trick almost nobody documents. What this guide covers Anatomy : the three records that make a form UI walkthrough : your first form, step by step Field types : what they do, what they output Badges : when forms must trigger on a job Auto-generated templates : the bridge from UI to Word Merge fields : the mail-merge analogy that makes it click Dynamic fields : the free data ServiceM8 fills in for you Advanced : checkboxes, skip-if logic, calc fields A real form : the Landscaping Quote, end to end Automating with AI : a custom MCP server in n8n Live demo : Claude builds a form for you How to use this doc. The chapters match the video chapters one-for-one. Watch along and use this as your reference. Or skip the video and use it standalone, every example, every code snippet, every merge-field rule is in here. Chapter 02 Anatomy of a ServiceM8 form A form looks like one thing in the staff app, but under the hood it's three records that point at each other plus a Word file. Knowing this saves a lot of confusion later when an answer renders blank or a template doesn't link. flowchart LR F["FORM name + badge"]:::core FF["FORM FIELDS your questions"]:::core DT["DOCUMENT TEMPLATE the Word .docx"]:::accent FR["FORM RESPONSE each submission"]:::core F --> FF F -.points to.-> DT F --> FR FR -. renders against .-> DT classDef core fill:#FFFFFF,stroke:#2A2D82,stroke-width:1.5px,color:#0E1130 classDef accent fill:#F7941D,stroke:#E67E0A,stroke-width:1.5px,color:#FFFFFF The four moving parts Form : the wrapper. Has a name, a badge, optional template fields. Form Field : one record per question. Has a name, a type, optional choices and conditions. Document Template : the Word .docx file with merge fields. Linked to the form by UUID. Form Response : every time staff submit the form on a job, you get one of these. ServiceM8 renders the response through the template to produce the final PDF, attached to the job. The terminology Merge field / Template Field Code : same thing. The «form_xxx» placeholder in the Word doc. Dynamic field : a built-in placeholder ServiceM8 fills automatically (e.g. «job.contact_first» ). Badge : the tag on a job that says "this form must be completed". Slug : the lowercase-with-underscores version of a question name, used inside the merge field code. The unavoidable manual step. ServiceM8's API can create the form, add every question, and read every response, but it cannot upload the .docx. Every form ends with a drag-and-drop into Settings → Document Templates . We'll come back to this in Chapter 11 when we automate the rest. Chapter 03 Create your first form: the UI walkthrough Open ServiceM8, go to Settings → Forms → Add Form , and you'll land on the Modify Form dialog. Five fields, three of which actually matter for getting started. (ServiceM8's own walkthrough is here: how to create form questions .) The Modify Form dialog: Form Name, Badge Name, Badge Requirement, Form Template. Step by step 01 Settings → Forms → Add Form Where the build starts From your ServiceM8 home, hit Settings, find the Forms section, click Add Form. The Modify Form dialog opens. 02 Name the form & pick a badge Form Name + Badge Name (≤12 chars) Form Name is what staff see in the picker. Badge Name is the short tag (think "ATP", "JSA", "SWMS") that appears as a chip on the job card. Keep it tight. 03 Set the Badge Requirement Optional / Check-In / Check-Out Decide whether the form is optional or must be completed at a specific point in the job lifecycle. Three options, full detail in Chapter 5. 04 Add questions one by one "New Question" → name → type Click New Question, type the question name, pick the type from the dropdown (Chapter 4 covers each type). Repeat. ServiceM8 auto-generates a Template Field Code for each one, that's the merge field for your Word doc. 05 Note the Template Field Code Auto-generated per question Each question gets a code like form_site_contact . This is the placeholder you'll drop into the Word template. Bookmark these, you'll be using them in Chapter 7. 06 Save the form No template needed yet You can save without a Form Template attached. The form exists; staff can fill it in. The PDF render comes once you upload the matching .docx (Chapter 6 onwards). Slug rule (official): use only letters and numbers in your question names. Symbols like : / & ( ) # can cause problems. Real-world templates do encode them ( : becomes __ ) but the safe default is plain alphanumerics with spaces. More on ServiceM8: editing forms · pausing & resuming forms Chapter 04 Field types: what each one is for Eight question types cover almost every form in the wild. The dropdown shows them in plain English; the Word output is what you embed in the .docx. Text Short single-line answers. Names, addresses, reference numbers, free text fewer than ~80 chars. «form_xxx» Text (Multi-Line) Notes, descriptions, paragraphs. Site access notes, work-done summaries, free-form recommendations. «form_xxx» (with line breaks) Number Quantities, hours, dollar amounts. Plays nicely with calc fields in the Word template (Ch.9). «form_xxx» Date Calendar pick. Inspection date, due-by date, inducted-on. Renders in the staff device's locale format. «form_xxx» Multiple Choice Pick exactly one from a list. Pass/fail, yes/no/NA, satisfaction ratings, category selection. «form_xxx» Multiple Choice (Multi-Answer) Tick any/all that apply. Materials required, hazards present, PPE worn. The "tickbox" pattern of choice. «form_xxx_choice» per option Signature On-screen signature capture. Customer acceptance, technician confirmation, supervisor sign-off. «image_form_xxx» Photo Camera or photo-library upload from the staff app. Before/after shots, defects, site overviews. Comes in three render sizes (see below). «image_form_xxx_small/medium/large» The two prefixes that matter. Anything you can read as text, including numbers, dates, choices, uses form_ . Anything that's an image, signatures and photos, uses image_form_ . Get the prefix wrong and the field renders blank. Photo & Signature: pick the right size variant Every Photo (and Signature) question gives you three merge-field codes, not one . When you set a question's type to Photo, ServiceM8 generates all three variants and you choose which to drop into the template based on how prominent you want the image: A Photo question shows three Template Field Codes, image_form_xxx_small , _medium , _large . Pick the one that fits your layout. Variant Use it for Approx. rendered size image_form_xxx_small Inline thumbnails, compact gallery rows, multiple photos side-by-side Thumbnail (a few centimetres wide) image_form_xxx_medium Mid-page reference shots, two-up before/after layouts Mid-column (around half the page width) image_form_xxx_large Hero photos, full-width site overviews, sign-off images Full content width of the page ServiceM8 doesn't publish exact pixel dimensions for the three variants, the sizes are designed to fit common DOCX layouts. If your output looks too cramped or too sprawling, swap the suffix and re-render. Reference: how to add a photo into a form . Template fields: the form-level extras One more thing the form record can hold: Template Fields . Open your form in ServiceM8 and switch to the Template Details tab. You can add up to ten labelled text fields (Field 1, Field 2, …) with optional default values. Each one becomes a merge field code, for example, a Template Field labelled "Job Review" emits form_job_review . Template Details tab: Field 1 "Job Review" → form_job_review . Each Template Field becomes its own merge field code. These are form-level fixed values , not per-response answers. Use them for things that shouldn't change every time a form is filled out, the standard approval block, a default disclaimer, a fixed certifying authority. Set the value once on the form record (or leave the default) and every rendered DOCX gets it. Three places to get a merge field from. Form questions (per-response answers, slug-derived from the question name). Template fields (form-level fixed text, slug-derived from the field label). Dynamic fields (built-in job.* / vendor.* etc, covered in Chapter 8). All three render the same way in the .docx. Chapter 05 Badges: applying a form to a job Badge Requirement, the optional / Check-In / Check-Out trigger, was set when you built the form back in Chapter 3. This chapter is about the other half: how a badge actually lands on a job , where it shows up, and what staff see in the field. (ServiceM8 docs: how to enable a form badge on a job .) How it gets onto a job A form is "linked" to a job by adding its badge to the Forms panel on the job card. Open the job, find the Forms panel, hit the add button, pick the form from your library, the badge appears on the job. Done. Once it's there, two things change: The form becomes available to staff in the app : the badge surfaces on the job tile with the form's icon as a coloured background and the badge name overlaid in a small chip. The Badge Requirement starts enforcing : if the form is set to "Form must be completed on Check-In" or "on Check-Out" , the staff member can't move past that lifecycle step until the form is filled in. The badge sits in the Forms panel of the job card, form icon as background, badge name as the overlaid chip. Stacking badges on one job A job can carry as many badges as you need. Pre-start safety check (Check-In trigger) and sign-off sheet (Check-Out trigger) on the same job? Add both badges. ServiceM8 will enforce each one at its own lifecycle point, the JSA blocks check-in, the sign-off blocks check-out. Staff get a clear "do this next" path through the day without you wiring up any custom logic. Badge name is the visual shorthand. Twelve characters max, but ideally 3-4 letters that map to the form's purpose, ATP (Authority to Proceed), CSE (Confined Space Entry), JSA, SWMS, QUOTE. They're how dispatchers and field staff recognise what's required at a glance, before the form even opens. Chapter 06 The auto-generated template: your bridge to Word You don't have to start the .docx from scratch. ServiceM8 can auto-generate a starter template that already has every Template Field Code wired up to a placeholder in the right place. Open it, and you'll see exactly what the merge field syntax looks like in practice. (ServiceM8 docs: how to create forms using an auto-generated template .) Generate it, download it, look inside Open your form: Settings → Forms → [your form] Look for the Form Template field, it has an option to auto-generate a starter Word document Generate, then download the .docx Open it in Microsoft Word You'll see each of your questions laid out as a section, with the answer slot already populated by a MERGEFIELD code like «form_site_contact» or «image_form_acceptance» This is the missing manual. Every code you see in the auto-generated template is the exact code ServiceM8 expects in your final template. Copy them, restyle them, rearrange them, but never rename them, or the field renders blank at submission time. Use the auto-generated template as a code reference, not a final design. The styling is plain. Take the merge field codes, drop them into your branded template (logo, colours, fonts, layout), and you've connected your visual identity to ServiceM8's data layer. The bridge from UI to Word This step is the conceptual hinge of the whole system. The form questions you typed in the UI in Chapter 3 became merge field codes in this Word document. The same codes will work whether you keep the auto-generated layout or build a polished branded template, because the codes are derived from the question names, not the layout. Which means the real question is: what are these merge fields, and how do you write them by hand? That's the next chapter. Chapter 07 Merge fields: it's a Word mail merge. If you've ever done a Word mail merge, print 200 letters with names from a spreadsheet, you already know how this works. ServiceM8 is doing exactly the same thing. The form is the spreadsheet of answers; the merge fields in the Word doc are the placeholders. Submit the form, ServiceM8 fills the placeholders, out comes the PDF. What it looks like in Word A merge field in Word renders as text wrapped in chevrons: «form_site_contact» «form_site_contact_phone» «image_form_acceptance» That's the placeholder. When ServiceM8 renders the form response, it swaps each chevron-wrapped code for the actual answer (or image, for signatures and photos). How to insert one by hand Position the cursor where the answer should appear Insert → Quick Parts → Field Choose MergeField from the list In the Field Name box, type the Template Field Code from your form (e.g. form_site_contact ) Click OK That's the entire mechanic. Nothing else to install. Nothing magical. Real Word merge fields, all the way down. On Mac? Word's path differs slightly, ServiceM8 has it covered: how to create a merge field on Mac . Merge-field keyboard shortcuts The «form_site_contact» you see in Word is just the display text . The real instruction underneath looks like { MERGEFIELD form_site_contact \* MERGEFORMAT } . Three Word shortcuts let you see and edit that instruction: Alt+F9 : toggles every field code in the document on/off. Best for surveying the whole template at once. Shift+F9 : toggles only the field your cursor is on. Best for editing one field without all the others flipping with it. Ctrl+F9 : inserts a brand-new pair of empty field-code braces { } at the cursor, ready for you to type a new field by hand. Less useful day-to-day (you have to type the whole instruction yourself), but you'll need it in Chapter 9 for IF/Wingdings checkboxes. Once you've toggled a field on with Alt+F9 or Shift+F9, this is what you're looking at: { MERGEFIELD form_site_contact \* MERGEFORMAT } Only the middle bit changes. The braces, the MERGEFIELD keyword, and the \* MERGEFORMAT switch are Word syntax, leave them alone. The only part you ever edit is the field-name slug in the highlighted box. The rename gotcha Here's the thing that trips everyone up: you can't rename a merge field by editing the visible text . If you select «form_site_contact» and retype it as «form_customer_name» , the underlying field instruction is still MERGEFIELD form_site_contact , you've only changed the placeholder display. Render the form and it'll still pull from form_site_contact . To actually change the field, right-click on the merge field and use the context menu: Right-click on a merge field for the only menu that actually edits it: Update Field , Edit Field… , Toggle Field Codes . Edit Field… opens the dialog where you can change the Field Name (the slug). This is the only way to rename safely. Toggle Field Codes shows just this field's underlying instruction inline, so you can confirm what slug it's actually pointing at. Update Field re-evaluates the field (useful for calc fields and IF fields after you change inputs). Save the file as .docx, not .doc. ServiceM8's renderer expects modern Word XML (the .docx format). The legacy .doc binary format will silently fail to render fields. Word's "Save As" defaults to .docx these days, but if you've inherited an old template, do a one-off Save As to be sure. The two prefixes Prefix Used for Example form_ Text, numbers, dates, single-choice and multi-answer choices «form_site_contact» image_form_ Signatures and photos, anything ServiceM8 needs to embed as an image «image_form_acceptance» The slug rule Question names become merge field codes by a deterministic slug rule. Two versions exist, the official guidance and the practical reality. Official rule (the safe path) Use only letters and numbers in question names. Spaces become underscores. ServiceM8 explicitly warns that symbols like : / & ( ) # - "may cause problems." # Question name → field code "Site Contact" → form_site_contact "Site Contact Mobile" → form_site_contact_mobile "Signed" → image_form_signed Real-world templates (advanced) Inspecting actual ServiceM8 form templates in the wild shows that special chars are encoded as double-underscores : not blocked, just represented. This is undocumented and fragile; only rely on it if you're scripting templates. # What the system actually emits "PPE: Eye Protection" → form_ppe__eye_protection "Codes & Standards" → form_codes__standards Treat the official rule as the default. Name your questions in clean alphanumerics with spaces. You'll never get bitten by encoding edge cases, and your merge fields will be readable when you type them into Word. Chapter 08 Dynamic fields: the answers you didn't ask for Not every placeholder in your template needs a form question behind it. ServiceM8 already knows the customer's name, the job address, today's date, your business email, who's logged in. These live in five built-in namespaces , each accessed by a dotted name. Drop them into the .docx and ServiceM8 fills them in at render time, no question, no question name, no slug, just the canonical code. The canonical reference lives on ServiceM8's site. The full list of every built-in field, with the exact wording of what each one returns, is on ServiceM8 support: Available Fields for Invoice and Quote Templates . The same fields work in form templates, bookmark that page. The five namespaces at a glance Namespace What it covers Common examples job.* The job: contact, address, status, dates, totals, payments, check-ins job.contact_first , job.job_address , job.generated_job_id location.* Your office: address, phone, GPS coordinates location.line1 , location.city , location.phone_1 vendor.* Your business: name, email, website vendor.name , vendor.email , vendor.website calculation.* Render-time data: today's date, current user details calculation.todays_date , calculation.current_user_fullname jobMaterial.* Materials/services on the job: item, qty, cost, price, totals jobMaterial.name , jobMaterial.quantity , jobMaterial.price Drop them straight in. A merge field of «job.contact_first» works without you adding a "Contact First Name" question to the form. ServiceM8 substitutes it from the job record at render time. Use these for headers, customer blocks, footers, signature lines, anywhere the data already exists. The high-value subset for everyday templates You don't need all 80+ fields. These are the ones that show up in nearly every well-built ServiceM8 template: Code Renders Use it for job.generated_job_id Job number (e.g. s319t ) Header, document title job.contact_first + job.contact_last Customer's full name Customer block, signature line job.job_address Full job site address Customer block, header job.description Initial job details Quote / scope-of-work block job.purchase_order_number PO reference Header, billing block job.total_price Total invoice value Pricing footer (after invoicing) vendor.name Your business name Header, footer, signature vendor.email Your business email Footer contact line location.phone_1 Your office phone Footer contact line calculation.todays_date Render date (DD/MM/YYYY) "Issued on" header calculation.current_user_fullname Staff member who triggered the render "Prepared by" line, sign-off The complete reference for all five namespaces is in Appendix A at the back of this guide. Chapter 09 Advanced: checkboxes, skip-if, calc fields The basics get you 80% of the way. The rest of forms, tickbox checkmarks, conditional questions, calculated totals, uses real Word field syntax. None of it is hard once you've seen the pattern; all of it is undocumented enough to be its own forum-question gold mine. ServiceM8 advanced word formulas walkthrough · remastered on YouTube. Sample document downloadable at the end of this chapter. Tickbox checkmarks for Multi-Answer questions When a question is type Multiple Choice (Multi-Answer) , each choice gets its own merge field, the slugified choice name appended to the question slug: # Question: "Materials Required" # Choices: "Mulch", "Topsoil", "Pavers", "Turf", "Plants" «form_materials_required_mulch» # "Yes" if ticked, otherwise blank «form_materials_required_topsoil» «form_materials_required_pavers» «form_materials_required_turf» «form_materials_required_plants» That's just text, useful, but you usually want a visible tickbox: ☑ if ticked, ☐ if not. Word can do this with an IF field wrapped around the merge field, swapping Wingdings glyphs: { IF " { MERGEFIELD form_materials_required_mulch } " = "Yes" "☑" (Wingdings F0FE, filled checkbox) "☐" (Wingdings F06F, empty checkbox) \* MERGEFORMAT } To insert this in Word: type the IF field manually with Ctrl+F9 to create field-code braces, embed the MERGEFIELD inside, and switch the two glyphs to the Wingdings font. Once you've built one, copy-paste-tweak for every other choice. This is the single most-asked question on the ServiceM8 forum: "How do I show a checkmark instead of the word Yes?" The answer is the IF/Wingdings pattern above. You now know it. ServiceM8's own write-up is here too: how to show check mark in the form . Skip-question-if conditions Forms get long fast. ServiceM8's Skip Question If hides a question unless an earlier answer matches. In the staff app, the question simply doesn't appear if the condition isn't met, clean, no clutter. (ServiceM8 docs: using the Skip Question If condition .) Set it up in the question editor: choose the question to test, choose the operator ( EQ for equals), pick a value. Multiple conditions can be chained. The Landscaping Quote in the next chapter uses 14 of these to hide material-specific questions unless the relevant material is ticked. Calc fields: Word does the math For pricing summaries, hours-times-rate, GST, totals, Word's formula field does arithmetic over your number-type answers, with currency formatting: { = { MERGEFIELD form_labour_hours } * { MERGEFIELD form_hourly_rate } \# "$#,##0.00" } Combine these with subtotals, GST calcs, and a grand-total line, and your form output prints a fully-itemised quote without a single manual calculation. Three Word powers worth knowing. Calc fields for arithmetic. IF fields for conditional sections (red banner if "Tree Removal", green tick if "Pass"). Per-branch run formatting, both the true and false branches of an IF can have their own colour, weight, and font. This is how serious SWMS templates colour their risk-rating cells. Sample formulas: copy & paste These are the patterns from the webinar's sample document, grouped by what they do. Click any group to expand it. The first one's open. Drop the formula into Word with Ctrl+F9 to create the brace pair, then type the contents (or paste, just remember Word strips merge-field structure when you paste plain text, so the safer move is to open the working .docx below and copy from there). Math Percentage of job total Print a percentage of job.total_price , formatted as currency. Useful for deposit amounts, progress payment tranches, partial invoices. # 90% of the job total { = «job.total_price» *0.9 \# "$#,##0.00;($#,##0.00)" } # 50% (deposit) { = «job.total_price» *0.5 \# "$#,##0.00;($#,##0.00)" } # 30% { = «job.total_price» *0.3 \# "$#,##0.00;($#,##0.00)" } # 10% { = «job.total_price» *0.1 \# "$#,##0.00;($#,##0.00)" } Swap the multiplier for any percentage between 0.01 and 0.99 . The \# "$#,##0.00;($#,##0.00)" switch formats the number as currency with negatives in parentheses. Calculated fields Job & line-item totals Subtract one merge field from another to derive a calculated value. Two patterns from the webinar: Total tax of a line item Inclusive price minus ex-tax price → the tax portion of the line. { = { MERGEFIELD jobMaterial.total_price } - { MERGEFIELD jobMaterial.total_price_ex_tax } } Total profit of a job Job total revenue minus job total cost → gross profit. { = { MERGEFIELD job.total_price } - { MERGEFIELD job.total_cost } } Wrap either of these in the same \# "$#,##0.00" switch from the percentage pattern to format as currency. Conditional text Show different value based on a response Render one string when a form answer matches a target value, another string when it doesn't. The classic Word IF field. # If form_question = "answer" then "result if true" else "result if false" { IF " { MERGEFIELD form_question } " = "answer" "result if true" "result if false" \* MERGEFORMAT } Replace form_question with your actual slug, "answer" with the value you're checking against, and the two strings with whatever you want printed. Both strings can be empty ( "" ) if you only want output in one branch. Tickboxes Check mark for Yes/No or multi-answer questions Render a Wingdings tick (☑) when the answer is "Yes", a Wingdings empty box (☐) when it isn't. Same pattern works for any single-answer Yes/No question and for any individual choice in a Multi-Answer question. Single Yes/No tickbox { IF " { MERGEFIELD form_question } " = "Yes" "☑" (Wingdings, F0FE, filled checkbox) "☐" (Wingdings, F06F, empty checkbox) \* MERGEFORMAT } Multi-Answer choice tickbox: worked example For a Multi-Answer question "Select colours used" with choices Blue / Red / Purple , each choice gets its own merge field with the slug appended: # Blue { IF " { MERGEFIELD form_select_colours_used_blue } " = "Yes" "☑" "☐" \* MERGEFORMAT } # Red { IF " { MERGEFIELD form_select_colours_used_red } " = "Yes" "☑" "☐" \* MERGEFORMAT } # Purple { IF " { MERGEFIELD form_select_colours_used_purple } " = "Yes" "☑" "☐" \* MERGEFORMAT } In Word, the two checkbox glyphs need their font set to Wingdings for them to render as boxes (otherwise you'll see literal Unicode characters in the document). The full working .docx with all of these pre-built (plus the field-code structure intact, ready to copy from) is downloadable below: Word document · ~14 KB servicem8-sample-word-formulas.docx The sample document from the webinar. Open in Word, press Alt+F9 , and read the formula syntax behind every example. Download More on ServiceM8: adding a photo into a form · remote signature · capturing a client's signature after review · form follow-up automation Chapter 10 A real form, end to end Everything covered so far comes together in one example: Landscaping Quote (AI Demo) . Twenty-six questions, conditional branching across five materials, photos, signatures, calc fields, priority banners. Built once, used per quote. 26 Questions 14 Conditional 5 Calc fields 3 Photo slots What's in the form Site contact & access : name, phone, gate codes / parking / restrictions Materials Required : multi-answer (Mulch / Topsoil / Pavers / Turf / Plants). Drives 14 conditional follow-ups. Per-material details : volumes, areas, types, only shown if that material is ticked Edging : length and type Labour, materials, disposal : feeds the calc fields in the quote PDF Special considerations : slope, tree removal, underground services, council permit. Drives the priority banner colours. Site photos × 3 : overview, existing conditions, access constraints Customer acceptance : signature, validates the quote What the rendered DOCX produces Branded header with brand colour, job number, customer name, prepared-by Customer block with billing & site details, validity period Per-material conditional sections, green "✓ INCLUDED" banner if ticked, grey "(not included)" otherwise Site photos table (3 image embeds) Special considerations checkboxes + priority banners (red "PRE-START MEETING" if tree removal, amber "PERMIT NEEDED") Pricing summary table, materials, labour (hours × rate), disposal, subtotal, GST 10%, TOTAL (bold, large, accent colour) Signature acceptance block + footer with vendor.email This isn't theoretical. The form lives in the dev ServiceM8 account right now (form UUID da66fcfc-7e0c-48d7-b6fe-241cf14d136b ). A test response with 3 photos was submitted successfully (response UUID ecab2ba7-518c-4f3e-bbe4-241cfe2729fb ), proving the photo upload pattern works end to end. Every code shown in this guide is verified against this live form. Chapter 11 Automating with AI: a custom MCP The Landscaping Quote took ~30 minutes to build by hand: type 26 questions, set 14 conditions, build the .docx, drop in 50+ merge fields, upload it. Doing this for every form is tedious. So we built an MCP server that lets Claude do it for you . The full workflow open in n8n, one MCP trigger, seven tool nodes, each wrapping a ServiceM8 API endpoint. The architecture flowchart LR USER["You (plain English)"]:::user CD["Claude Desktop"]:::ai MCP["n8n workflow MCP server"]:::tm SM8["ServiceM8 API"]:::sm8 USER --> CD CD MCP MCP SM8 classDef user fill:#FFE8CC,stroke:#F7941D,color:#0E1130,stroke-width:1.5px classDef ai fill:#E7E8F5,stroke:#2A2D82,color:#0E1130,stroke-width:1.5px classDef tm fill:#F7941D,stroke:#E67E0A,color:#FFFFFF,stroke-width:1.5px classDef sm8 fill:#FFFFFF,stroke:#2A2D82,color:#0E1130,stroke-width:1.5px Claude Desktop speaks the Model Context Protocol : an open spec for letting LLMs call external tools. The n8n workflow exposes itself as an MCP server, so Claude can call its tools just like it calls Read/Edit/Bash internally. Each tool wraps one ServiceM8 API endpoint. The seven tools Tool What it does list_forms Read every form already in your account, see what exists, avoid duplicates, find a UUID. list_recent_jobs Return the 10 most recent jobs, pick a target to test a form against. get_form Read one form's metadata (name, badge, template UUID, template fields). list_form_fields Read every question on a given form, sorted by sort_order. create_form Create a new form record. Returns the new form UUID. add_form_field Add one question to a form. Called once per question. Returns the new field UUID (needed for conditional branching). get_docx_build_recipe Generate a markdown recipe, every merge field code, the IF/Wingdings pattern, the slug rules, that Claude uses to build the matching .docx in its own code-execution environment. The "spec-first" prompt pattern The workflow is designed for one prompt shape: describe the form in plain English, Claude turns it into a structured spec, calls the tools in order. No code from you, no clicking through the SM8 UI for an hour. "List the forms in my ServiceM8 account" → list_forms runs, you see what exists "Build a [JSA / SWMS / sign-off / quote] form for [scenario]" → Claude proposes a question list You confirm or edit → create_form + add_form_field × N "Build the matching template" → get_docx_build_recipe + Claude builds the .docx locally You drag-and-drop the .docx into Settings → Document Templates (the one manual step) One reminder from Chapter 2. The ServiceM8 API doesn't expose template upload. Even with the MCP, the .docx still gets dropped into Settings → Document Templates by hand at the end. Everything else is automated. Download the workflow The full n8n workflow JSON, all seven tools, the MCP trigger, the credential references, the embedded recipe generator, is yours. Import it into your own n8n instance and you have a working ServiceM8 Forms MCP server in about three minutes. n8n workflow JSON · ~22 KB servicem8-forms-mcp-server.json Click to download. Import into n8n: workflows → Import from File. Download What you'll need to wire it up An n8n instance (self-hosted or n8n Cloud) with the LangChain / MCP nodes available. A ServiceM8 API key : create one in ServiceM8 Settings → Account → API Keys. Add it to n8n as a Header Auth credential named ServiceM8 API Key (matches the workflow's references): header X-API-Key , value your smk-... key. A Claude Desktop install (or any MCP-capable client) to connect. Three-minute install In n8n, open Workflows → Import from File , pick the JSON above. Open the credential picker on each HTTP Request node and select your ServiceM8 API Key credential (or whatever name you chose, n8n will flag any node still missing one). Activate the workflow. The MCP Server Trigger gives you an HTTP endpoint like https://your-n8n/mcp/servicem8-forms . In Claude Desktop's claude_desktop_config.json , add: "servicem8-forms" : { "transport" : { "type" : "http" , "url" : "https://your-n8n/mcp/servicem8-forms" } } Restart Claude Desktop. Type "List my ServiceM8 forms" . The seven tools light up. Free to use, no strings. If you build something cool with it, send me the prompt, I love seeing what other operators do with this stuff. If you'd rather skip the install entirely and have us host it for you, that's the closing CTA. Chapter 12 The live demo: Claude builds a form Three minutes of setup, one prompt, a fully-built form in your ServiceM8 account. What you'll see on screen 01 Open Claude Desktop MCP already connected The ServiceM8 Forms MCP is configured in Claude Desktop's settings. Open a fresh chat, the seven tools are available. 02 "List my ServiceM8 forms" First check, what's already there? Claude calls list_forms . The current form library appears. We'll create a new form, no name collision. 03 "Build a sample form" One sentence, plain English Type a brief: "Build a small Authority to Proceed form, site contact, date, scope summary, customer signature." Claude proposes the question list with field types and any conditions. 04 Confirm. Watch it build. create_form → add_form_field × N Claude calls create_form first to get the form UUID, then loops add_form_field for each question. Each call returns a new field UUID. 05 Generate the matching .docx get_docx_build_recipe Claude calls the recipe tool, gets the merge-field codes back as markdown, then uses its own code-execution to build the .docx using python-docx . The file appears. 06 Open ServiceM8, drop in the .docx The one manual step Settings → Document Templates → Upload Custom Template. Then link it on the form. Done, the form is live, ready to attach to any job. From spec to live form in ~5 minutes. No clicking through 26 question dialogs. No copy-pasting merge field codes. No Wingdings googling. The MCP doesn't replace your judgement, you still review the spec before it builds, but it removes every minute of mechanical work between "I want a form for X" and "the form exists in ServiceM8". What next Want a custom form built: or this MCP for your business? Trade Magnet builds bespoke ServiceM8 forms, document templates, and AI-powered automations. If you've watched the video and want the same setup wired up for your account, get in touch. trademagnet.com.au → Prefer a pre-built form? Buy one from the ServiceM8 Form Store , or pay ServiceM8 to build a custom form . Trade Magnet is one option among several, pick the one that fits. Appendix A Full dynamic-fields reference Every built-in code ServiceM8 exposes for templates, grouped by namespace. Drop any of these straight into your .docx, no form question required. Source & canonical reference: ServiceM8 maintains the official list at Available Fields for Invoice and Quote Templates . The fields apply to form templates as well. If anything below disagrees with that page, ServiceM8's page wins. job.* : the current job Code Returns job.date Job creation date job.generated_job_id Job number (unique identifier) job.status Quote / Work Order / Completed / Unsuccessful job.description Initial job description job.work_done_description Summary of completed work job.category Job category job.purchase_order_number PO reference job.contact_first / job.contact_last Job contact name job.phone_1 / job.mobile / job.email Job contact phone, mobile, email job.job_address Job site address job.job_address_singleline Job address on one line job.billing_address Billing address job.instantpost_billing_address Billing address in postal format job.billing_contact_first / job.billing_contact_last Billing contact name job.phone_2 / job.billing_mobile / job.billing_email Billing contact phone / mobile / email job.property_manager_first / job.property_manager_last Property manager name job.property_manager_phone / job.property_manager_mobile / job.property_manager_email Property manager contact job.site_name Site name (or customer name if not a job site) job.company_name Customer's company name job.booked_by_name Staff member who booked the job job.quote_date Date marked as Quote job.work_order_date Date marked as Work Order job.completion_date Date marked completed job.completion_actioned_by Staff who marked job completed job.unsuccessful_date Date marked unsuccessful job.invoice_date / job.invoice_date_extended Invoice date (short / long format) job.invoice_due_date / job.invoice_due_date_from_today Invoice due date variants job.payment_date Date payment was processed job.payment_actioned_by Staff who processed payment job.payment_method How payment was made job.total_price Total invoice value (incl. tax) job.subtotal_price Subtotal (excl. tax) job.materials_subtotal_price Total materials cost job.labour_subtotal_price Total labour cost job.total_tax_price Tax total (GST / VAT) job.amount_paid Amount paid by customer job.balance_due Outstanding amount job.deposit_amount / job.deposit_description Deposit due / terms job.last_checkin_staff_name Last check-in staff member job.last_checkin_start_date / job.last_checkin_end_date Last check-in start / end job.last_checkin_duration Last check-in duration job.total_checkin_duration Total check-in time on the job location.* : your office Code Returns location.name Location name (e.g. Head Office) location.line1 / location.line2 / location.line3 Office address lines location.city Office city location.state Office state / province location.post_code Office postal / ZIP code location.country Office country location.phone_1 Office phone location.mobile Office mobile location.lat / location.lng Office GPS coordinates vendor.* : your business identity Code Returns vendor.name Your company name vendor.email Your company email vendor.website Your company website calculation.* : render-time data Code Returns calculation.todays_date Render date (DD/MM/YYYY) calculation.todays_date_extended Render date (long format, e.g. 1 January 2026) calculation.current_user_fullname Current user's full name calculation.current_user_first / calculation.current_user_last Current user's first / last name calculation.current_user_email Current user's email calculation.current_user_mobile Current user's mobile calculation.current_user_customfield_licence_number Current user's licence number jobMaterial.* : line items on the job Code Returns jobMaterial.item_number Material / service code jobMaterial.name Material / service name jobMaterial.description Material / service description jobMaterial.quantity Quantity jobMaterial.tax_rate Item tax type jobMaterial.cost Per-item cost jobMaterial.price Per-item price (incl. tax) jobMaterial.price_ex_tax Per-item price (excl. tax) jobMaterial.total_price Line total (incl. tax) jobMaterial.total_price_ex_tax Line total (excl. tax) Appendix B Slug rules & the Wingdings checkbox Slug encoding cheat sheet Question name → MERGEFIELD code transform, deduced from real ServiceM8 form templates: # Per character: lowercase, then: alphanumeric → keep space → "_" any other → "__" collapse runs of 3+ underscores → "__" trim leading / trailing underscores # Examples observed: "Hot" → form_hot "Site Contact" → form_site_contact "Materials Required" → form_materials_required "PPE Required: Eye Protection" → form_ppe_required__eye_protection "Codes of Practice & Standards" → form_codes_of_practice__standards "Customer Acceptance" (Signature) → image_form_customer_acceptance Multi-Answer choice fields For a Multi-Answer question, each choice gets its own merge field, the choice slug appended to the question slug: # Question: "Disposal Required" with choices: # Green Waste, Soil and Excavation, Concrete and Hard Fill, None form_disposal_required_green_waste form_disposal_required_soil_and_excavation form_disposal_required_concrete_and_hard_fill form_disposal_required_none # Each substitutes "Yes" if ticked, blank otherwise. The IF/Wingdings pattern (raw OOXML) For anyone scripting templates, here's the actual 11-run XML sequence ServiceM8 expects per multi-answer choice cell. Field codes nest properly, note the begin / end field-char pairs match like brackets. IF " MERGEFIELD form_xxx_choice «form_xxx_choice» " = "Yes" " # ☑ " " # ☐ " \\* MERGEFORMAT Common pitfalls Field renders blank. Slug doesn't match. Open the auto-generated template (Chapter 6), find the right code, copy it verbatim. Image renders blank. Used form_ prefix instead of image_form_ for a Signature or Photo question. "Yes" appears instead of a checkmark. The IF/Wingdings wrapper is missing, the raw merge field is showing through. Calc field shows zero. The number-type question hasn't been answered, or the calc field references the wrong slug. Conditional field never appears. Skip-if condition references a question that comes later in sort order, re-order so the trigger question is before the conditional one. Template upload silently does nothing. The .docx is fine; you just need to link it on the form record afterwards (set Form Template in the Modify Form dialog). One last thing. If a field renders blank in your final PDF, unzip the .docx (it's just a ZIP) and grep word/document.xml for MERGEFIELD . The list you see should match every code from the auto-generated template. If something's missing or misspelt, that's the field that's broken. --- # Blog --- ## Article: The Trade Software Automation Tier List (2026) URL: https://trademagnet.com.au/resources/blog/trade-software-automation-tier-list Published: 2026-06-29 import TierBoard from "../../library/widgets/wdg.tierBoard.astro"; import TierList from "../../library/widgets/wdg.tierList.astro"; import { tradeSoftwareTierList } from "../../lib/tradeSoftwareTierList"; G'day. I build automations for trade businesses for a living, which means I spend my days elbow-deep in the back end of every job management app on the market. Some are an absolute dream to work with. Others make you want to chuck the laptop off the scaffold. So here's the list nobody else will give you straight: the big trade and construction apps, ranked by one thing only, how easy they actually are to automate. Not how pretty the app is. Not how loud the marketing is. Whether you can get your data in and out, wire it to the tools you already run, and let software handle the boring bits while you stay on the tools. I scored every one out of ten on six things that decide how automatable it is: a proper **API**, real **webhooks**, an **MCP** for AI agents, an **SDK or add-ons** to extend it, **native AI**, and **accounting** sync. Then I added **my own score** from actually using them day to day. The average sets the tier, so the ranking is the features talking, not just my gut. The badges on each card show where a platform is genuinely strong, and the full scorecard is at the bottom. This is the flip side of my [top automation platforms post](/resources/blog/top-5-automation-software-for-tradies). That one ranks the tools that do the automating, like Zapier, Make and GoHighLevel. This one ranks the trade software they have to plug into. ## So what do you actually do with this? Two takeaways. First, the app you love isn't always the app that loves you back. ServiceM8 and Tradify are both wildly popular with small trades, and they sit at opposite ends of this list. If you're choosing software and you ever want to automate, and you will, check the back door, not just the showroom. Second, almost every app here can be made to do more than it does out of the box, even the painful ones. The question is how much it costs to get there, and that's exactly the bit we work out for you. If you're not sure where your current setup lands, or what it would take to wire it up properly, [get an instant estimate](/estimate). Tell us what you're running and what you want it to do, and we'll give you a straight answer with no sales call needed. You got into trades to build things, not to copy data between apps. Pick software that lets the software do that part. --- ## Article: ServiceM8 AI-Powered Job Creation for Tradies URL: https://trademagnet.com.au/resources/blog/servicem8-ai-powered-job-creation-for-tradies Published: 2025-06-09 import TikTok from "../../library/widgets/wdg.tiktok.astro"; import Callout from "../../library/widgets/wdg.callout.astro"; G'day legends. Here's one of the best automations I've ever built, and I don't say that lightly. We wired it up for a plumbing client, and it takes a form submission and turns it into a complete, ready-to-go job inside ServiceM8. No copy-paste, no re-typing, no chasing photos. The tech opens the job and everything's already there. Here's the kicker: it uses AI in exactly the right spot, and nowhere it shouldn't. ## What the automation actually does When a customer fills out the job form on the website, five things happen in the background, in order: 1. **Webhook intake.** The form submission lands as a webhook with the client's details, the job description and the photo URLs. 2. **Client matching and creation.** We check ServiceM8 for an existing client via the API. If they're already in there, we match them. If not, we create the contact cleanly. 3. **Image and text analysis.** The job details and the photos get sent to OpenAI, which writes a tidy, tech-friendly summary of what the job actually is. 4. **Job creation.** All of that gets pushed into ServiceM8 as a job, with the contact attached. 5. **Attachment upload.** The submitted photos are converted to binary and uploaded to the job diary, each with its own UUID. End result: a complete, clean ServiceM8 job with proper client and contact data, a job description written for tradies, and every uploaded photo attached. And you didn't lift a finger. ## Custom build vs the built-in add-on ServiceM8 has a Simple Online Enquiry add-on, and for some people that's plenty. But it has limits. Here's how the custom automation stacks up: | Feature | Simple Enquiry | Custom Automation | | --- | --- | --- | | Native ServiceM8 integration | Yes | Yes | | Custom field support | No | Yes | | Keep your existing forms | No | Yes | | AI-powered descriptions | No | Yes | | Full automation | No, manual conversion | Yes | | Scales as you grow | No | Yes | Use the Simple Enquiry add-on if you're just getting started. But if you want control, custom fields and room to grow, the custom automation wins every time. ## TikTok breakdown Want to see it in action? I broke the whole thing down on TikTok: ## A few common questions **Does it work with my website?** Yep. WordPress, Elementor, Webflow, Jotform, Typeform: if it can send a form, we can wire it in. **Do I need Zapier or Make?** No. It runs through our own stack, so there's no extra per-task subscription stacking up. **Can it do more than just create the job?** For sure. We can bolt on alerts, booking and scheduling, tech assignment, and quote follow-ups. The job creation is just the start. ## The bottom line If you're drowning in form submissions and re-typing the same details into ServiceM8 every day, this is hours back every week. Book a consult and we'll map it for your setup. Or if you're brand new to ServiceM8, you can start a 14-day free trial and grab 30% off your first six months through Trade Magnet. --- ## Article: Go HighLevel for Tradies: The Platform Behind Every Smart Automation You've Ever Seen URL: https://trademagnet.com.au/resources/blog/go-highlevel-for-tradies-the-platform-behind-every-smart-automation-youve-ever-seen Published: 2025-05-19 import Figure from "../../library/widgets/wdg.figure.astro"; G'day legend. I'm Dave, an ex-sparky turned computer bloke who helps tradies build smart business systems. One platform powers nearly every automation I build at Trade Magnet, and most tradies have never heard of it.
Most business owners haven't either. But if you've ever watched a business handle follow-ups seamlessly, generate reviews on autopilot and run its admin without dropping a ball, odds are this platform is doing the work behind the scenes. ## What the hell is Go HighLevel? Go HighLevel (GHL) started around 2018 in Dallas. A bunch of marketers built it because they were sick of paying for a dozen separate tools just to run their agencies. Before GHL, agencies were juggling: - CRM systems - Email platforms - SMS tools - Website builders - Appointment schedulers - Review management - Form builders - Automation software
Every one of those was its own subscription, bleeding money every month. The GHL team rolled it all into one. Agencies loved it so much that GHL made it white-labelable, meaning agencies could rebrand it and resell it to clients under their own name. That's exactly what happens today, often at a 5x markup. When the agency does the setup properly and actually supports it, that premium buys you their expertise. ## The real power of GHL: it does everything Here's what sets GHL apart from the single-purpose tools: - **Websites and landing pages** that turn visitors into leads - **Email marketing** that lands in the inbox, not the spam folder - **SMS marketing** to reach customers where they actually look - **CRM and pipeline management** to track every lead and where it's at - **Appointment booking** so customers book themselves in - **Review management** that asks for and chases Google reviews automatically - **Form builder** for quote requests that actually work - **Automation workflows** that wire it all together, hands-free It's not one category. It's an ecosystem that talks to itself. ## How we use GHL at Trade Magnet We use GHL as the backbone for tradie-focused automations. A few examples: **Lead capture and instant response.** Customer fills out a quote form, the system captures the details, fires an instant SMS confirmation, drops them into your pipeline, and pings you with the job info. **Smart follow-up sequences.** A quote that's been sitting for three days triggers a nudge: "Hey John, just checking if you had any questions about that quote. Happy to lock it in when you're ready." **Review automation.** Job marked complete, the system waits 24 hours, sends a review request, and follows up if needed. More 5-star Google reviews, on autopilot. **Missed-call recovery.** Miss a call and the customer gets a text: "Sorry I missed your call, I'll get back to you shortly. Feel free to text me here in the meantime." **Plays nice with your tools.** Already on ServiceM8? GHL integrates with most job management systems, so leads flow straight from your website into the workflow you already run. ## The pricing reality check Here's what GHL actually costs direct: - **Starter, $97 USD/month.** Core tools (CRM, email, SMS, websites, automations) and up to 3 sub-accounts. Plenty for a small tradie business. - **Unlimited, $297 USD/month.** Everything in Starter, plus unlimited sub-accounts, API access for custom integrations, and a white-label desktop app. - **Agency SaaS, $497 USD/month.** What agencies like us run. Unlimited client accounts, full white-labeling, and the advanced reporting to manage it all. Here's the thing most people don't realise: a lot of those "business automation systems" sold to tradies for $200 to $500 a month are just GHL with a different logo on it. You're paying agency markup for the same core engine. ## Why most tradies don't just buy it direct Fair question: "Why don't I just grab GHL myself for $97 USD a month?" Honest answer: **It's built for marketers.** GHL is aimed at marketing agencies. The support assumes you speak marketing. Expect a steep learning curve. **Setup is complex.** It's powerful, but it's not plug-and-play. Getting the automations, integrations and workflows right takes real technical know-how and time. **The interface is marketing-centric.** Words like "funnels", "sequences" and "attribution" mean nothing to a tradie trying to win jobs. **It needs ongoing management.** Someone has to watch it, update it, fix it when it breaks, and tune it as you grow. **It needs trade-specific customisation.** Generic templates don't cut it. The workflows have to match how a trade business actually runs. **And the cost can still work in your favour.** GHL's base is $97 USD a month. At Trade Magnet we offer it at $89 AUD a month, which after the currency swap usually saves you $60 to $80, plus you get tradie-specific setup and ongoing support from someone who gets your business. That's where an agency earns its keep: we handle the technical mess, build the workflows around your trade, and keep it running. You just get the results. ## What this means for your business Ever wondered how some tradies always respond instantly, always follow up, always have reviews rolling in, and never seem to drop a lead? A system like this is quietly doing it for them. GHL isn't magic. But set up properly for your trade, it handles the boring admin that otherwise eats your time or falls through the cracks. The goal isn't to turn you into a tech expert. It's to give you your time back so you can stay on the tools. ## The bottom line Go HighLevel powers most of the smart automations you see across the trades. It's not the only option, but set up right, it delivers. Whether you build it yourself, work with us, or find another agency who knows their stuff matters less than actually having systems that serve your business. You got into trades to fix things and solve problems, not to chase quotes and remember to ask for reviews. Want to see how we'd apply GHL specifically for your trade? Get in touch and I'll show you exactly what's possible. Practical systems, no marketing spin. --- ## Article: Why AI Isn't Always the Answer: The Truth About Automation That Actually Works URL: https://trademagnet.com.au/resources/blog/why-ai-isnt-always-the-answer-the-truth-about-automation-that-actually-works Published: 2025-05-19 AI is the buzzword of the moment, and don't get me wrong, it's genuinely brilliant in the right spot. But here's the truth most people building automations won't tell you: for a lot of trade businesses, AI isn't the answer. What you actually need is a system that does the same thing, the right way, every single time. ## The core problem: AI isn't deterministic The catch with AI is that you never know exactly what it's going to do. You could feed it the same info ten times and get ten slightly different results. For creative work, that's fine, even useful. For business-critical jobs, it's a problem. When a customer fills out a form and it needs to land in your CRM, or a job needs to be created in ServiceM8 or Simpro, you don't want "close enough". You want the exact same outcome every time. ## What trade businesses actually need Most of what runs a trade business needs to be rock-solid and repeatable: - Customer form submissions flowing into your CRM - Jobs created in ServiceM8 or Simpro, correctly, every time - The same result on the hundredth run as the first That's why around 90% of the automations we build at Trade Magnet don't use AI at all. We build structured, reliable workflows with tools like Go HighLevel and n8n, where the steps are defined and the output is predictable. ## Where AI actually shines None of this means AI is useless. Far from it. It's brilliant when the task suits it: - **Content generation.** Blog posts, customer stories, first drafts. - **Chatbots.** Handling FAQs and capturing leads. - **Email assistance.** Drafting newsletters and updates. - **Repurposing content.** Turning one piece into many across platforms. The common thread: AI works best when it's supervised. A human stays in the loop to check it before it goes out. ## A simple way to decide Here's the rule of thumb we use: | Type of task | Best tool | | --- | --- | | Lead capture | Reliable workflow | | CRM updates | Reliable workflow | | Job creation | Reliable workflow | | Content writing | AI, supervised | | Brainstorming | AI, supervised | If it's a critical business process that has to be right every time, build it as a deterministic workflow. If it's a creative task where variation is fine and a human reviews the output, AI is a great fit. ## The bottom line In trade business automation, reliability beats flashy every day of the week. The goal is simple: practical results, no surprises. Use AI where it makes sense, lean on solid workflows for everything that has to be right, and you'll have a system you can actually trust. Want a hand working out which is which for your business? Book a consult and we'll map it out. --- ## Article: My Top 5 Automation Software for Tradies URL: https://trademagnet.com.au/resources/blog/top-5-automation-software-for-tradies Published: 2024-03-31 For trade businesses, finding the right tools to automate and streamline operations is crucial. My journey through different automation tools has turned up some great discoveries that have seriously improved how my business runs. Here's a deeper dive into the five I use, and keep using, for me and my clients' automations. ## 1. GoHighLevel ![A GoHighLevel automation workflow built for a trade business](/images/blog/gohighlevel-automation-tradies-tmt-ui.webp) Full transparency: GoHighLevel is the platform we build on at Trade Magnet, so I'm hardly impartial. But it genuinely is the ultimate digital toolkit for automation and marketing. **Why it's a game changer:** It doesn't just automate tasks. It's a CRM, virtual mobile numbers to keep business and personal calls separate, social media planning, a website builder, and email marketing, all in one. It streamlines everything from customer onboarding to project management and invoicing in a few clicks, and it's the backbone of my customer comms through automated SMS and email. The automation features have completely changed how I handle repetitive work, including those crucial automated review requests after a job. **Limitations:** Connecting to outside apps is mostly done through webhooks, so deep third-party automation can need a hand (the marketplace is improving this). And for a brand-new business, the price can feel steep if you only want to automate one or two things. **Pricing:** Plans scale with what you need, and we package and set it up at Trade Magnet so it fits the business rather than the other way around. Reach out and we'll tailor it to you. ## 2. Zapier ![Zapier automation for trade businesses](/images/blog/zapier-automation-tradies-tmt-ui.webp) **Why it's great:** It connects over 3,000 web apps, so I can automate just about any task between the tools my business uses. Building "Zaps" moves info between apps with no manual input from me, and it handles both simple and genuinely complex workflows. **Limitations:** Advanced workflows can get clunky to set up. On lower-tier plans, Zaps run on a delay (every 15 minutes) and task limits can bite for high-volume work. Access to premium apps is gated to higher plans. **Pricing:** Free for basic use. Paid plans start at $46.43/month (billed annually) up to $160.59/month for more advanced features. ## 3. Make.com ![Make.com automation for trade businesses](/images/blog/make-automation-tradies-tmt-ui.webp) **Why it's great:** The visual builder makes it easy to connect apps and automate workflows, even if you're not a tech wizard. It gives detailed control over how data moves between apps, so you can build very specific automations, and the pre-made templates save a heap of time. **Limitations:** That same power can overwhelm beginners. Free and lower plans cap the number of operations per month, and there's a real learning curve to get the most out of it. **Pricing:** Free plan to get started. Paid plans from $9/month (billed annually) up to $29/month for more grunt and higher data limits. ## 4. Pabbly Connect ![Pabbly Connect automation for trade businesses](/images/blog/pabbly-connect-automation-tradies-tmt-ui.webp) **Why it's great:** It automates tasks without any code, which is great, because I'm lazy. It supports a huge range of integrations and, crucially, offers unlimited operations per workflow, so you're not constantly watching a task counter. **Limitations:** Its integration library, while big, isn't quite as deep as some rivals for niche apps. The interface can feel less polished, and a few advanced features are thinner than other platforms. **Pricing:** This is where it shines. Free for 100 workflow tasks, up to $59 USD/month (billed annually). There's also a Lifetime Plan at $699 USD that gets you 10,000 tasks a month and unlimited multi-step workflows. Great for scaling automations without scaling the cost. ## 5. Microsoft Power Automate ![Microsoft Power Automate for trade businesses](/images/blog/microsoft-power-automate-tradies-tmt-ui.webp) **Why it's great:** I used this prolifically back at Ventia. If you're in the Microsoft ecosystem it integrates seamlessly with the Office tools you already run, syncing files, collecting data, firing notifications, and the AI builder plus prebuilt connectors make it powerful for both simple and complex jobs. **Limitations:** Lean heavily on non-Microsoft tools and it's less versatile. Like Make.com, the depth comes with complexity that can intimidate smaller teams, and the best AI and data features sit behind higher-tier plans. **Pricing:** Free with Office 365 for basic use. Standalone plans start at $15/user/month for the advanced stuff. ## The tools at a glance | Software | Price | What you get | |---|---|---| | GoHighLevel | Tailored (ask us) | CRM, virtual numbers, social planning, website builder, email marketing, automations | | Zapier | Free; paid from $46.43/mo (annual) | Connects 3,000+ apps, custom Zaps, no code | | Make.com | Free; paid from $9/mo (annual) | Visual workflow builder, detailed data control, complex logic | | Pabbly Connect | Free for 100 tasks; to $59/mo; $699 lifetime | Simple, powerful task automation, unlimited operations | | Microsoft Power Automate | Free with Office 365; from $15/user/mo | Microsoft ecosystem, AI builder, prebuilt connectors | ## My must-haves If I had to pick two, hands down it's **GoHighLevel** and **Pabbly Connect**. GoHighLevel isn't just good, it's a game-changer, perfectly tailored to run operations and lift client service with its automation features. And Pabbly Connect? Grabbing the lifetime deal was like striking gold: it's the Swiss Army knife in my digital toolbox, linking GoHighLevel via webhooks to everything from QuickBooks to Google Sheets. The way the two work together is bloody magic. ## Five ways to automate your business today **1. Missed call text back.** Automatically text anyone whose call you miss, letting them know you'll get back to them. It catches leads you'd otherwise lose and instantly lifts your service. GoHighLevel shines here using a virtual mobile number. **2. Customer onboarding with online forms.** Let clients fill in their details, preferences and job info at their own pace. It kills manual data entry and sets a professional tone from the first touch. Plenty of tools do forms (GoHighLevel included); the magic is piping them into your CRM with Zapier, Make.com or Pabbly Connect. **3. Appointment reminders.** Automated SMS or email reminders cut no-shows and last-minute cancellations and make you look organised. Easy to set up on just about any platform. **4. Google reviews automation.** After a job, automate the ask for a Google review. More reviews means a stronger reputation and more work. GoHighLevel has a full reputation manager built in, but it's also dead easy with Zapier, Make.com or Pabbly. **5. AI assistant for customer interaction.** Use an AI assistant to answer common questions and booking requests instantly, so no lead goes cold. You can wire one up with the ChatGPT connector in Zapier, Make.com or Pabbly Connect, or use GoHighLevel's built-in AI across Facebook, Instagram and Google Business Profile. ## The takeaway The right tools, and a willingness to embrace them, can hand any trade business serious efficiency, growth and happier customers. You don't have to do all five at once. Pick the one that's costing you the most time right now, automate it, and build from there. If you want a hand working out where to start, that's exactly what we do at Trade Magnet. --- # Podcast --- ## Podcast Ep 19: This Copywriter Could Transform Your Trade Business with One Word ✏️ Scott Bywater from Copywriting That Sells URL: https://trademagnet.com.au/resources/podcast/ep-19-this-copywriter-could-transform-your-trade-business-with-one-word-scott-bywater G’day legends! The Digital Tradie Podcast | Episode 19 G’day legends! I’ve just finished an absolute ripper of a chat with Scott Bywater , the mastermind behind Copywriting That Sells . We talked about everything from what copywriting really is to how tradies can use words to boost their business. And spoiler: If you’re not emailing your clients or telling your story, you’re leaving cash on the table! Scott’s a straight shooter with a knack for getting to the point (fitting for a copywriter, hey?). He shared some of the biggest wins and toughest lessons from his career, including how one of his ads helped build a $30 million company. Yep, you read that right. This episode is packed with gold nuggets for anyone who wants to step up their marketing game. “Copywriting is salesmanship in print.” Scott Bywater – The Digital Tradie Podcast Scott’s Take on Copywriting: More Than Just Words One thing that stood out was Scott’s definition of copywriting: “salesmanship in print.” It’s not just about slapping a few sentences together. Nope. It’s about turning those words into your best digital sales rep. Think of it this way—would you send your green apprentice to pitch a big client? Didn’t think so. Scott says most tradies send out a “digital apprentice” without even realizing it. Time to swap that out for a pro! The Power of the Open Loop Now, here’s a pro tip: Scott dropped the term open loop , which is basically like telling your client, “Stick around, I’ve got something great coming up.” It’s what keeps people reading, listening, and clicking. If your emails or ads aren’t using this, you’re missing out. It’s the trick that keeps clients hooked, just like the old “stay tuned after the break” on telly. Why Always Be Marketing (ABM) is Non-Negotiable Scott hammered home the importance of ABM—Always Be Marketing . Even when you’re flat out with work, don’t stop reaching out and building your future pipeline. Take it from the man himself, “It’s what you do today that will impact you six months or even five years down the track.” You wouldn’t let your van run out of fuel, so why let your marketing tank hit empty? Email: Your Secret Weapon Here’s a stat that made me sit up in my chair: Email marketing has a 36-to-1 ROI. That’s not a typo. For every dollar you spend, you could see $36 back. If you’re not using email to stay in touch with your clients, you’re leaving money on the table. That’s why I use Trade Magnet for all my email marketing , check it out 📨 Scott’s seen email campaigns pull in six-figure revenues—no joke. Key Takeways for Tradies- Scott Bywater 5 Key Takeaways from Scott Bywater: Treat Copy Like Your Top Tradie – Don’t send out rookie words. Make sure your copy works as hard as your best team member. Hook ‘Em with Open Loops – Keep your audience hanging on with curiosity. It works wonders in keeping their attention. Always Be Marketing (ABM) – Don’t drop the ball when you’re busy. Future-you will thank you. Storytelling Matters – Share your story. It’s what makes you relatable and memorable. Email Isn’t Dead – Use your email list or lose out. It’s one of the most effective tools in your marketing toolbox. Wrapping It Up! Chatting with Scott was a real eye-opener. He’s the bloke who can turn words into cash, and his insights are exactly what us tradies need to hear. If you’re keen to take your business to the next level, this episode’s for you. Get your pen ready and jot down some notes, because Scott’s advice is worth its weight in gold. Until next time, keep crushing it, legends. There’s more on The Digital Tradie to help you build, grow, and conquer! Cheers! --- ## Podcast Ep 18: The SECRET to Building a Successful TRADE Business👷 Drew Mountney from Melfire URL: https://trademagnet.com.au/resources/podcast/ep-18-the-secret-to-building-a-successful-trade-business-drew-mountney-from-melfire G’day legends! The Digital Tradie Podcast | Episode 18 G’day legends! I’ve just wrapped up a ripping chat with Drew Mountney from Melfire . This bloke’s been in the fire maintenance game for over 21 years , and he’s seen it all. We talked fire safety, business highs and lows, and even got into the power of blogging! Drew’s found a way to keep things ticking along smoothly while avoiding the usual headaches that come with running a trade business. You might think fire maintenance sounds pretty straightforward, but Drew’s shown me it’s way more complex. We talked about the ins and outs of sprinklers, the maze of fire safety regulations, and why he’s stuck with a no-bull approach to business. He’s built his company on simplicity and quality , making sure every job’s done right without unnecessary fluff. “Do a little work, but do it well” Drew Mountney – The Digital Tradie Podcast Drew’s No-Nonsense Approach to Business What I love about Drew is his focus on quality over quantity. He’s not aiming for massive turnover or wild expansion. He’s built a successful business by sticking to what he knows and doing it well. His motto? “Do a little work, but do it really well.” For anyone looking to grow their trade business, Drew’s got some valuable insights on how to keep things real and keep customers happy. The Blogging Advantage Here’s a twist: Drew’s a big believer in blogging ! He’s got retired engineers following him around, snapping photos, and writing blogs. And you know what? It’s been a game-changer. By consistently putting out content, Drew’s built up a treasure trove of knowledge on his website. He reckons it’s one of the best investments he’s made, helping his business stay top-of-mind for clients and boosting his online presence without breaking the bank. Drew Mountney – Melfire Electrical & Fire Maintenance 5 Key Takeaways from Drew Mountney: Keep It Simple – Success isn’t about being the biggest. It’s about doing a few things really well. Drew’s focus on quality over quantity is a great reminder to tradies everywhere. Invest in Education – Drew’s a massive advocate for staying sharp. He’s all about sharing knowledge and keeping up with industry changes, which keeps him ahead of the game. Blogging for the Win – Don’t underestimate the power of a good blog. Drew’s blogs have become valuable digital assets that help bring in new business. It’s a long-term play, but one that pays off big time. Build Strong Relationships – Business is all about connections. Drew makes sure he works with people he trusts, whether it’s clients, tradies, or digital marketers. Embrace Digital – Whether it’s a solid website or consistent blogging, going digital is non-negotiable. Drew’s journey from Yellow Pages to digital marketing shows that you’ve got to adapt to survive. Wrapping It Up! Chatting with Drew was bloody AWESOME. He’s a true legend who’s survived the fire game by focusing on what matters and keeping it real. Whether you’re looking to grow your business or just want to pick up a few trade secrets, this episode’s a goldmine. Until next time, keep smashing it, legends. There’s plenty more to come on The Digital Tradie that’ll help you up your game and bring fresh ideas to your business! Cheers! --- ## Podcast Ep 17: The $BILLION CEO on a Mission to Reverse History... Jim Penman from Jim's Group URL: https://trademagnet.com.au/resources/podcast/ep-17-the-dollarbillion-ceo-on-a-mission-to-reverse-history-jim-penman-from-jims-group G’day legends! The Digital Tradie Podcast | Episode 17 G’day legends! I’ve just had the opportunity to sit down with one of the most fascinating people I’ve ever met, Jim Penman —the founder of the iconic Jim’s Group . Now, if you know the Jim’s name, you probably think of lawn mowing , dog washing , and all the other services (even Jumping Castles ) that Jim’s franchises cover, but what you might not know is the incredible story behind the man himself . Jim’s journey is a bit different from your average entrepreneur story. He didn’t set out to build a billion-dollar empire. In fact, he started out as an academic . Yep, you heard that right. He was deep into research and studying history when life threw him a curveball, and he found himself launching a lawn mowing business to make ends meet. Fast forward, and that little side gig turned into a behemoth with over 5,400 franchises across Australia and beyond. It’s a classic “tradie to tycoon” story, but it’s the why behind Jim’s empire that’s truly fascinating. From Academia to Mowing Empire Jim didn’t just build a franchise; he transformed an entire industry. What sets Jim apart is his obsession with customer service. He’s built his brand around making sure every job is done right, and that’s something we can all learn from. In our chat, Jim shared how he pioneered his own computer system to streamline job allocation and keep his customers happy. His relentless drive to improve efficiency has played a huge part in the success of Jim’s Group. Jim Penman – Working at his computer 🖥️ But it wasn’t always smooth sailing. Jim’s ideas were seen as too radical back in his academic days, and he was pushed out of the field. But instead of giving up, he doubled down on his vision and used those same radical ideas to fuel the growth of his business. One of his mottos? “Always think about how you can improve.” A Passion for Epigenetics & Society Here’s the part that really blew me away. Jim isn’t just a business mogul; he’s deeply invested in research, particularly around epigenetics and how it affects society. He’s passionate about reversing the decline of civilization by focusing on human character. Jim believes that by understanding and potentially altering our genetic makeup, we can create a better society. Yeah, this is next-level stuff. For the first time in history we can reverse it! Jim Penman – The Digital Tradie Podcast We talked about how wealth and urbanization are changing the way people think and behave, and Jim’s research is aimed at reversing those effects. It’s a wild concept, but he’s already putting millions of dollars into studying this area. His goal? To create treatments that will help people build better habits, work harder, and become better parents —all in an effort to strengthen society. Marketing: My Case Study with Jim’s Fencing As part of my chat with Jim, I wanted to test out Jim’s Group customer service firsthand, so I requested a quote from Jim’s Fencing for some work on my property. The experience? Pretty bloody GOOD! David List – Fence I used for Jim’s Fencing case study From the moment I filled out the online form, everything ran like clockwork. I received a confirmation page that told me who my franchisee would be and that I’d get a call within two hours. Well, they didn’t just meet that deadline—they beat it. I got a call in one hour , and the franchisee was friendly, professional, and quick to arrange a site visit. The attention to detail was impressive—from automated follow-ups to a welcome video from Jim himself. It’s clear why Jim’s Group has thrived in the competitive trade service market: they’ve nailed their customer experience. If you’re a tradie you can up something as easy as this with Trade Magnet , even if you don’t have a website. Jim Penman – Jim’s Group Key Takeaways from Jim Penman So, what can us tradies learn from someone who’s built an empire and is now looking to change the world? Here are 5 key takeaways from my chat with Jim: Customer Service is King – Jim’s built his entire business on the idea that if you serve your customers well, the business will come. It’s not just about getting the job done—it’s about getting it done right and leaving your customers happy. Never Stop Improving – Whether it’s creating a better system for running your business or finding ways to serve your clients better, you should always be looking for ways to improve. Jim lives by this, and it’s clearly worked for him. Think Bigger – Jim’s gone beyond just running a successful business. He’s using his resources to try and change the world. While we might not all be able to fund research into epigenetics, we can think about how our work can have a bigger impact on our community. Automation is Your Friend – Jim’s Group uses technology to automate as much as possible—from job allocations to customer follow-ups. Automation allows you to focus on what matters most: delivering quality service and growing your business. Leverage Feedback – Jim uses customer feedback as a tool for constant improvement. Whether it’s via surveys or follow-ups, make sure you’re gathering data from your customers to identify areas you can improve and keep the standard high. What’s the Wrap? This conversation with Jim was an eye-opener. He’s proof that you don’t have to follow the path society sets for you—sometimes, you’ve got to forge your own. Whether it’s growing your business, serving your customers, or thinking about how you can make a difference, Jim’s story is one of resilience, vision, and never settling for “good enough.” So, next time you’re out there on the tools, think about how you can improve, how you can serve better, and maybe even how you can make a difference beyond the job site. Until next time, legends, keep smashing it out there. There are more stories coming your way that’ll help you take your trade business to the next level. Cheers! --- ## Podcast Ep 16: Building a Mental Health Movement for Tradies 💪 Tamarah Vos & Dan Allen from Trademutt URL: https://trademagnet.com.au/resources/podcast/ep-16-building-a-mental-health-movement-for-tradies-tamarah-vos-and-dan-allen-from-tra G‘day legends! The Digital Tradie Podcast | Episode 16 G‘day legends! I’ve got another ripper of a podcast for you. I recently sat down with Tamarah Vos and Daniel Allen , the legends behind TradeMutt , for an episode of The Digital Tradie Podcast . If you don’t know these two, you’re about to be blown away. TradeMutt isn’t just a workwear brand —it’s a movement that’s making real noise about mental health in the trades. Their funky, bright shirts are designed to start conversations about a topic that’s been swept under the rug for way too long. So, grab a cold one, and let me tell you what these bloody legends are all about. From Sparky to Mental Health Advocate Tamarah’s story is as inspiring as it gets. Growing up in a tradie household, she followed in her dad’s footsteps and became an electrician . But after feeling isolated as one of the few women in the industry, she started sharing her journey on social media. What started as a way to connect with others quickly turned into a full-blown platform for promoting herself and business. Dan, on the other hand, came from a tough personal experience. After losing a close mate to suicide , he and his co-founder Ed Ross decided to tackle mental health head-on through their workwear. They took an industry staple— hi-vis shirts—and turned it into a conversation starter. Funky Workwear for a Serious Cause Ed and Dan didn’t just stop at creating workwear that looks cool. They made sure it had a purpose. TradeMutt donates 50% of its profits to support TIACS , a free mental health service for tradies. Their message is simple: it’s okay to not be okay, and it’s bloody important to talk about it. But it wasn’t always smooth sailing. When they first started, people told them they were crazy— spending all their savings on a shirt that no one would buy. Well, turns out they weren’t crazy—they were just ahead of their time. The Power of Social Media One of the best parts of the chat was hearing Tamarah talk about how her Instagram page changed her life and business (TTS Electrics) . Like many of us, she was skeptical at first. But by being authentic and showing her day-to-day as a female tradie, she built a community that helped her land brand deals and connect with other women in the industry. Dan echoed this, talking about how putting yourself out there can be tough, but the rewards are massive. They’ve both built a following by being real, sharing their struggles, and talking openly about mental health. And let me tell you, it’s working. Marketing in the Tradie Space Now, let’s talk marketing. Tamarah and Dan have absolutely nailed this by tapping into something most tradies overlook— storytelling . TradeMutt workwear isn’t just a product; it’s a tool to tell a bigger story about mental health . That’s where the magic happens in marketing. If you’re running a trade business, you can take a page out of TradeMutt’s playbook. It’s not enough to just show the work you do—you need to connect with your audience on a deeper level. Think about what makes your business stand out. Is there a personal story behind why you do what you do? Maybe it’s the way you help customers, or a cause that’s close to your heart. Think about what makes your business stand out. Is there a personal story behind why you do what you do? David List – The Digital Tradie Start by sharing that story on social media. Whether it’s through posts, videos, or even a podcast, people love hearing the “why” behind your business. It’s all about building a relationship with your audience, not just selling a service. Another bloody AWESOME tip? Leverage partnerships . Just like Tamarah partnered with brands like Blundstones, teaming up with brands or influencers that align with your values can boost your visibility and credibility. Finally, be consistent. Whether it’s sharing updates on social media or following up with clients, consistency is key to staying top of mind . And don’t be afraid to inject some personality into your marketing. Remember, people do business with people—not just businesses. Tamarah Vos & Daniel Allen – TradeMutt Key Takeaways for Tradies If you’re a tradie looking to stand out and make an impact, Tamarah and Dan dropped some serious wisdom: Start Conversations About Mental Health – Don’t shy away from it. By talking openly, you could be helping someone in more ways than you know. Be Yourself Online – Authenticity goes a long way. Whether it’s Instagram or Facebook, show the real you, and people will connect with that. Use Your Platform for Good – Whether you have 50 followers or 50,000, use your voice to make a difference in your industry. Confidence Comes Through Experience – The more you put yourself out there, the more confidence you’ll build—both on the tools and in life. Purpose-Driven Work is Powerful – When you believe in what you’re doing, like TradeMutt does with mental health, it makes the tough days a lot easier to handle. What’s the Wrap? This episode is more than just a chat about workwear. It’s a deep dive into how we, as tradies, can make a real difference in the industry—starting with ourselves. Tamarah and Dan are proof that when you combine purpose with passion, you can change lives. So, next time you’re on the tools, think about how you can start a conversation that matters. Whether it’s talking about mental health or just checking in on your mates, it’s all about making a difference. Until next time, legends, keep smashing it out there. Stay tuned for more stories that’ll help you take your trade business to the next level. Cheers! --- ## Podcast Ep 15: Meet the Walt Disney of Marketing💫 John Dwyer from The Institute of WOW URL: https://trademagnet.com.au/resources/podcast/ep-15-meet-the-walt-disney-of-marketing-john-dwyer-from-the-institute-of-wow G’day, legends! The Digital Tradie Podcast | Episode 15 G’day, legends! Today I’ve got a cracker of a story for you. I recently had the pleasure of sitting down with John Dwyer, the mastermind behind the Institute of WOW , for an episode of The Digital Tradie . If you haven’t heard of John, you’re in for a treat. This bloke’s worked with the likes of Michael Jordan, Jerry Seinfeld, and even Princess Di . Yep, you heard that right—royalty and all! But what’s more important is how John’s epic marketing strategies can turn your trade business into the go-to choice for customers . So, grab a cold one and let’s dive into some of the golden nuggets he shared. The “Wow Factor”: Not Just for Happy Meals Ever heard of the “wow factor” ? If not, it’s time to add it to your toolbox. John’s all about creating memorable experiences that make your customers say, “Wow!” Think about it—when was the last time a customer raved about getting their downlights installed? Probably never. But what if you threw in something extra, like a freebie or a surprise discount? Suddenly, you’re not just another tradie—you’re the legend they won’t stop talking about. John shared a killer story about how he helped a solar guy double his business. The secret? A cheeky little holiday giveaway that had customers signing on the dotted line faster than a Bunnings sausage sizzle sells out. It’s all about giving your clients a reason to choose you over the next bloke, and sometimes that reason is as simple as a free trip to the Gold Coast. Beating the Big Boys with Clever Marketing John’s got a knack for helping the underdog take on the big players. He’s all about using clever marketing tactics that the big boys can’t—or won’t—do. For example, he helped a small building society take on the banks by offering a free holiday with every home loan. Sounds simple, right? But the results were off the charts. They doubled their home loans in three months and tripled them in a year. Imagine what a similar approach could do for your business! The takeaway here? Don’t just compete on price. Compete on value. Whether it’s a freebie, a loyalty program, or just top-notch customer service, find a way to offer something your competitors can’t. And if you can make it fun or cheeky, even better. We’re tradies, not robots—our clients should know that! The $2.2 Million Mistake: A Hard Lesson Learned It’s not all smooth sailing in the world of marketing, and John Dwyer knows this firsthand. One of his most jaw-dropping stories involves losing $2.2 million in just one week —yep, you read that right. Here’s what happened: John’s company was printing trading cards for big names like Disney. But one of his staff made a massive mistake, printing the cards in the wrong order. When the packs hit the stores, kids kept getting the same six cards over and over. Parents were furious, complaints flooded in, and John had to pull all the cards from the shelves. The timing couldn’t have been worse—it was just before Mother’s Day, and the financial hit was so big that John and his family had to leave their home . The takeaway? Always double-check your work, especially when big money’s at stake. Mistakes happen, but how you handle them is what really matters. We lost 2.2 million in one week! John Dwyer – The Institute of WOW Storytime with Seinfeld One of my favourite parts of the chat was when John talked about getting Jerry Seinfeld on board for a marketing campaign. Now, I don’t know about you, but I never thought a comedian would be promoting a building society! But that’s exactly what happened. After six months of persistence, John convinced Jerry to be the face of their campaign , and the results were nothing short of legendary. The lesson here? Persistence pays off. Whether you’re chasing a big contract or just trying to get a customer to pick up the phone, don’t give up. Keep at it, and you might just land your own version of Seinfeld—whatever that looks like in your world. John Dwyer – Key Takeaways for Tradies 5 Tips to Wow Your Clients and Boost Your Trade Business Now, I’m not going to leave you hanging without some actionable tips. Here are five top takeaways from my chat with John Dwyer that you can start using today: Create a “Wow” Moment : It doesn’t take much—a small freebie, a handwritten thank you note, or even a follow-up call can make a big impression. Give your clients something to remember you by, and they’ll keep coming back. Use Incentives to Close Deals : John’s example of the holiday giveaway is pure gold. Consider what incentives you could offer that won’t break the bank but will add huge perceived value for your customers. Think Like a Challenger : If you’re not the biggest name in your trade, don’t try to beat the big boys at their own game. Instead, find ways to differentiate yourself with creative offers, stellar customer service, or unique marketing tactics. Leverage Testimonials : Got a happy client? Don’t let that gold go to waste. Use testimonials in your marketing to build trust and show potential customers why they should choose you. Persistence is Key : Whether you’re trying to land a big job or get your marketing right, don’t give up at the first hurdle. Stick with it, tweak your approach if needed, and keep going. You’ll get there. So, What’s the Wrap? Here’s the deal. If you want your trade business to stand out, you’ve got to do more than just show up on time and do a good job. You need to wow your clients, think outside the box, and maybe even throw in a cheeky incentive or two. John Dwyer’s marketing wisdom is pure gold , and if you take a page out of his book, you’ll be leaving your competition in the dust. So, next time you’re quoting a job, think about what you can do to make your customer say, “Wow!” And remember, it doesn’t have to be expensive—it just has to be memorable. Until next time, keep smashing it out there and stay tuned for more tips and stories to help you take your trade business to the next level. Cheers! --- ## Podcast Ep 14: Inside the World of Electrical Inspections⚡with Matt Shovelton from MWS Inspections URL: https://trademagnet.com.au/resources/podcast/ep-14-inside-the-world-of-electrical-inspectionswith-matt-shovelton-from-mws-inspectio G’day legend! The Digital Tradie Podcast | Episode 14 G’day legend! In this episode of the Digital Tradie I chat with Matt Shovelton from MWS Inspections . Now, if you’ve ever wondered what it’s like to be the bloke running around in the rain, making sure the power comes back on after a storm, this one’s for you. So, why become an inspector? I remember asking Matt this right off the bat. You see, most of us think being an inspector is all about taking a pay cut and working double time —at least that’s what one inspector had a laugh about when Matt first considered the gig. And you know what? It’s kinda true. But there’s so much more to it than that. The Craziest Defect Ever Seen One of the highlights of our chat? Matt shared the funniest (and craziest) defect he’s ever seen on the job. Picture this: a tradie, all smiles, finished installing a brand-new switchboard and mains. Everything’s going swimmingly until Matt asks, “Where’s the meter panel?” The smile drops faster than a spanner from a greasy hand. It’s like forgetting to put the cheese in a cheese sandwich—it’s just not right! But hey, that’s what keeps the job interesting, right? Where’s the Meter Panel? Matt Shovelton – MWS Inspections From Apprentice to Legend Matt’s journey to becoming an inspector is pretty legendary. He started in his early 30s, thinking he’d soak up all the knowledge from the older inspectors before they moved on. Fast forward 10 years, and he’s seen it all—from dodgy cable installs to full-on power outages that needed more than just a quick fix. He’s also got some strong opinions on apprenticeships. If you’re in high school and thinking about a trade, Matt reckons you should stick it out till Year 12 . Get some maturity under your belt before you jump into the deep end. But once you’re in, mate, the trade world is your oyster. Matt Shovelton – MWS Inspections 5 Tips for Tradies Before we wrap up, here are 5 tips that Matt and I think every tradie should keep in their back pocket: Stay Organized with Job Management Tools : Whether it’s an app like GeoOp or something else, having a system to manage your jobs is crucial. It keeps everything running smoothly and helps you avoid those “Oh, crap!” moments on site. Keep Your Google My Business Profile Updated : This is your digital shopfront. Post regularly, respond to reviews, and make sure your info is up to date. It’s an easy way to show potential clients that you’re active and ready for work. Invest in Quality Tools : Don’t skimp on your gear. Whether it’s a top-notch insulation tester or a reliable van, having quality tools means you can do your job right the first time, every time. Never Stop Learning : The trade industry is always evolving. Keep up with the latest standards, get your CPD hours in, and don’t be afraid to ask questions. The more you know, the better you’ll be at your job—and the more respect you’ll earn on site. Send Out Regular Newsletters : Keep your clients in the loop and remind them you’re still around. A simple newsletter can lead to repeat business. It’s cheaper to keep a customer than to find a new one, so make sure you’re top of mind when they need something done. The Power of Newsletters Newsletters are a simple yet powerful tool to keep your business in your clients’ minds. Sending out a regular update—whether it’s sharing tips, showcasing recent projects, or just saying g’day—helps you stay relevant and builds trust (Psst… Trade Magnet can help with this) Clients are more likely to reach out when they see your name pop up in their inbox regularly. Plus, it’s a great way to encourage referrals and keep that work pipeline flowing. Conclusion Whether you’re just starting out or you’ve been in the trade for years, there’s always something new to learn and ways to improve your game. Matt’s journey from tradie to inspector is a solid reminder that growth in this industry comes from staying curious, building strong relationships, and keeping up with the latest tools and trends. So, take these tips to heart, keep hustling, and never stop learning. And remember—create some legendary content while you’re at it! --- ## Podcast Ep 13: Meet the WILLY WONKA of Beer🍺 Warren Bradford from Deacam Electrical and Fermecraft URL: https://trademagnet.com.au/resources/podcast/ep-13-meet-the-willy-wonka-of-beer-warren-bradford-from-deacam-electrical-and-fermecra G’day legend! The Digital Tradie Podcast | Episode 13 G’day legend! In this episode I’ve got a story that’s straight out of a fairy tale—well, if Willy Wonka traded in chocolate for beer, that is. Meet Warren Bradford, the genius behind Deacam Electrical and the revolutionary Fermecraft automation system for the craft beverage industry. This bloke’s journey is nothing short of legendary, filled with highs, lows, and a whole lot of hops. So, grab a cold one, sit back, and let me take you on a wild ride through Warren’s world. From Breakdown to Breakthrough Imagine this: you’re running a successful business, life’s good, and then BAM! Everything crashes down. Warren knows this story all too well. He went from the top of his game to hitting rock bottom, ending up in the hospital for two weeks after a mental breakdown. But like a true tradesman, he didn’t stay down for long. Warren picked himself up, dusted himself off, and went back to his roots—electrical work. This time, he wasn’t just pulling cables; he was building an empire. If you or a mate are struggling with mental health, remember you’re not alone. TIACS (This Is A Conversation Starter) is a mental health counselling service that can help. Call or text them on 0488 846 988 , Mon-Fri, 8 am-10 pm AEST, or visit tiacs.org . They’re there to support tradies, so don’t hesitate to reach out. The Birth of Fermecraft Fast forward to today, and Warren is the proud creator of Fermecraft, an automation system that’s taking the craft beverage world by storm. Picture this: a brewery filled with bubbling vats of beer, each one monitored and controlled by a system so smart it practically runs itself. That’s Fermecraft for you—making sure that every drop of beer is perfect , and giving brewers their weekends back. Because let’s face it, who wants to babysit a fermenter when you could be out enjoying a few cold ones? A Tradie’s Dream Warren’s journey is a testament to the power of the trade. He started as an industrial electrician, working on everything from overhead cranes to complex PLC systems. It’s this hands-on experience that gave him the edge to create something truly groundbreaking. And let’s not forget his stint in the 4WD industry—because why not? Every detour, every failure, added to his skill set and resilience. Crafting Success So, how did Warren go from fixing overhead cranes to becoming the Willy Wonka of beer? It’s all about community and passion. He didn’t just build Fermecraft; he built relationships. From knocking on doors at local breweries to getting referrals from satisfied customers, Warren’s approach to business is as much about people as it is about technology. And it’s this approach that’s taken Fermecraft global, with systems now operating in the US, UK, Europe, and beyond. Warren Bradford – Key Takeaways for Tradies 5 Key Takeaways for Tradies Resilience is Key : Warren’s journey from a mental breakdown to building a successful business shows the importance of bouncing back. No matter how tough things get, there’s always a way forward. Embrace Your Roots : Going back to his electrical trade roots was a turning point for Warren. Never underestimate the value of your foundational skills and knowledge. Innovation Through Passion : Warren’s passion for automation and brewing led to the creation of Fermecraft. Find what excites you and let that drive your innovations. Community Matters : Building strong relationships in your community can open doors. Warren’s network helped him grow Fermecraft into an international success. Learning from Failure : Each failure taught Warren valuable lessons. Don’t fear failure; use it as a stepping stone to greater success. Wrapping It Up So, there you have it—Warren Bradford, the Willy Wonka of Beer. His story is one of resilience, innovation, and sheer determination. Next time you’re enjoying a perfectly brewed craft beer, raise a glass to the tradie who made it possible. And if you’re ever in need of some inspiration or just a good yarn, tune in to The Digital Tradie Podcast . --- ## Podcast Ep 12: The Marketing GENIUS Behind Australia's BIGGEST Franchise 🚀 Joel Kleber from Jim's Group URL: https://trademagnet.com.au/resources/podcast/ep-12-the-marketing-genius-behind-australias-biggest-franchise-joel-kleber-from-jims-g G’day legend! The Digital Tradie Podcast | Episode 12 G’day legend! I’ve got a ripper of a podcast episode to share with you. I had an absolute blast chatting with Joel Kleber , the Chief Marketing Officer for Jim’s Group , on The Digital Tradie podcast . Joel’s journey from a law clerk to the top marketing gun in Australia is mind-blowing, and his insights are pure gold for anyone looking to give their trade business a serious boost through digital marketing. From Law Clerk to Marketing Legend! Joel’s story is a cracker. He started as a law clerk but quickly figured out his true passion was in marketing. He landed at Jim’s Group and saw a massive opportunity to leverage social media and digital content to grow the brand . His genius strategies have helped double the number of franchisees in just five short years – talk about impressive! The Power of the Founder Story One of the biggest takeaways from my chat with Joel is the importance of the founder’s story . No matter how big your company gets, having a relatable and compelling founder story can set you apart from the rest. For Jim’s Group, the founder’s narrative is a key part of their branding strategy, and it resonates deeply with both franchisees and customers. Social Media: Volume Over Perfection Joel emphasized that in the world of social media, volume often trumps perfection. You can spend days crafting the perfect piece of content, but if it doesn’t hit the mark, it’s a wasted effort. Instead, focus on producing a high volume of content to see what resonates with your audience. This approach has been a game-changer for Jim’s Group, allowing them to fine-tune their strategy based on real-world feedback. “You can put all the time into doing a nice piece of content and if it doesn’t hit the mark, you’ve wasted a day or two and a lot of money doing it. So you’ve got to work on volume to know what works for you” Joel Kleber – The Digital Tradie Podcast Engaging with the Community Another awesome strategy Joel shared is the use of Facebook groups . By actively engaging in local community groups, Jim’s franchisees can generate leads and build a strong local presence. Posting about free services or community initiatives in these groups can create a flood of inquiries and establish trust with potential customers. Leveraging Memes and Cultural Relevance Joel also highlighted the unexpected power of memes. While some franchisees might find them annoying, memes can significantly boost brand visibility and relatability . Jim’s Group has embraced this trend, understanding that a well-loved brand often becomes a part of popular culture. Joel Kleber – Key Takeaways for Tradies Top 5 Takeaways Tell Your Story: Share your founder’s story to create a deeper connection with your audience. People love a good yarn! Go Big on Content: Don’t stress about making everything perfect. Pump out lots of content and see what sticks. Quantity can lead to quality! Get Involved Locally: Jump into Facebook groups and engage with your local community. It’s a top way to generate leads and build trust. Embrace the Memes: Memes aren’t just for laughs – they can boost your brand’s visibility and make you more relatable. Stay Fresh and Fun: Always look for new ways to keep your content exciting and relevant. Experiment with different formats and styles to see what works best. Conclusion My chat with Joel Kleber was packed with awesome insights that can benefit any trade business looking to grow through digital marketing . His journey and strategies are a powerful reminder that with the right approach, you can achieve remarkable growth and success. --- ## Podcast Ep 11: When Should Tradies Use the HARD Sell? URL: https://trademagnet.com.au/resources/podcast/ep-11-when-should-tradies-use-the-hard-sell G’day legend! The Digital Tradie Podcast | Episode 12 G’day legend! If you’ve been tuning in to “The Digital Tradie,” you know we’re all about helping you convert with online content . Whether it’s video, SEO, or the latest online marketing tips, I’ve got you covered. But today, we’re diving into the topic of: hard sell vs. the soft sell. Yep, we’re talking about when to hit your customers with a straightforward pitch and when to ease them into it. The Crazy Month That Sparked This Chat Before we get into it, let me share a bit about why this topic is on my mind. This past month has been nuts! It all started with a family holiday to Thailand, i even made a video about it titled: Why are Thailand’s Powerlines so CRAZY🤪 (watch it, it’s fun). A beautiful place, but my son ended up needing his appendix out. Navigating the Thai hospital system while dealing with insurance was no joke . Then, back home in Ballarat, we had another hospital scare with complications from the surgery. It’s been a whirlwind, making me reevaluate everything I’m doing in my business. Why Hard Selling Matters So, let’s talk about the hard sell. Sometimes, you just gotta be direct. Here’s what I do: I run LIST Media , a digital marketing and business automation agency . We handle everything from websites for tradies and Google Ads to videography and social media. Plus, we’ve got Trade Magnet , a killer CRM for tradies that handles lead management, social media, invoicing, and more. Think of hard selling as laying your cards on the table. You’re telling your potential customers exactly what you offer and how it can help them. It’s straightforward, no-nonsense, and sometimes exactly what’s needed to close a deal. Here are five scenarios where you might want to go all-in with a hard sell: Trade Shows and Expos : When you’re at a trade show or expo, everyone knows why you’re there. It’s prime time to pitch your services. Have your offer down pat and don’t be shy about telling people what you do. High Demand Periods : If there’s a rush for your services, don’t hesitate. When someone calls looking to get a job done, be ready to seal the deal right then and there. Upselling or Cross-Selling : While you’re on-site, if you see additional work that could benefit the client, let them know. It’s easier to sell to someone who’s already engaged with you. Like this awesome offer 👉 SEO for Tradies 😆 Introducing a New Service : Got a new offering? Make sure your potential clients know about it. Be clear about what it is and why they need it. Limited Inventory : If you’ve got leftover materials or a special offer, push it! Use paid ads and make sure your messaging is clear and direct. The Softer Side Now, what about the soft sell? This is more about building relationships and staying top of mind. Social media posts, day-in-the-life videos , a podcast , and content that shows off your expertise ( like this awesome sponsored video I did 👌) without directly pitching are all part of the soft sell strategy. It’s about creating trust and familiarity so that when your clients need your services, they think of you first. Balancing the Two The trick is knowing when to use each approach. Sometimes, a hard sell is just what’s needed to close a deal. Other times, a soft sell can nurture your leads until they’re ready to commit. So, tradies, whether you’re hammering out a direct pitch or easing your clients into a relationship, remember that both strategies have their place. Keep tweaking your approach, and you’ll find the right balance for your business. That’s it for today! If you want to learn more about how LIST Media and Trade Magnet can help you, head over to LIST Media or Trade Magnet for a free trial. And don’t forget to like and subscribe to “The Digital Tradie” podcast. Share it with your mates, and keep an ear out for some awesome guests coming up. Catch ya next time! --- ## Podcast Ep 10: The RISE & FALL of Australian Solar ☀️ with Pat Southwell from Southwell Solar Inspections URL: https://trademagnet.com.au/resources/podcast/ep-10-the-rise-and-fall-of-australian-solar-with-pat-southwell-from-southwell-solar-in G’day legend! The Digital Tradie Podcast | Episode 10 G’day legend! Dave List here from “The Digital Tradie” podcast. Buckle up, because I’ve got an AWESOME story from my chat with Pat Southwell, the bloke they call the Wolf of Wall Street of the Solar Industry . From Solar Boom to Bust Pat Southwell isn’t just any tradie. This guy’s been in the trenches of the solar industry, starting from the early days when government rebates had everyone and their dog installing solar panels. Pat was at True Value Solar during its meteoric rise and dramatic fall, and he’s got the battle scars to prove it. Crazy Defects and Shenanigans Pat’s seen some things that would make any sparky’s hair stand on end. One of the wildest stories he shared was about a neutral bar so cooked it was literally smoking. Imagine rocking up to a job and finding a switchboard looking like a disco bar – lights flashing, smoke billowing. Pat saved the day on that one, but not before having a good laugh at the absurdity of it all. Marketing Mayhem True Value Solar wasn’t just about dodgy installs; they were marketing maniacs too. They had ads everywhere, even sponsoring Essendon Football Club . But the real kicker? They’d sell you a five-kilowatt inverter with a handful of panels and call it an “upgradable system.” Talk about a sales pitch! It’s like buying a ute with one wheel and being told you can upgrade to the other three later. Pat’s Tips for Solar Consumers If you’re in the market for solar, Pat’s got some awesome advice. First off, steer clear of the cheap, dodgy gear. You wouldn’t buy a second-hand nail gun with half its parts missing, right? Same goes for solar. And always go with in-house installers over subbies . The guys who have skin in the game are more likely to do a top job without cutting corners. FAQ: Marketing Lessons from True Value Solar Q: What made True Value Solar’s marketing so effective? A: True Value Solar invested heavily in visibility. From TV ads to sponsoring the Essendon Football Club, they were everywhere. Their aggressive media presence made them a household name. Q: What should tradies avoid in their marketing? A: Avoid misleading customers. Selling a “five-kilowatt system” with only 1.5 kilowatts of panels might get quick sales, but it damages trust in the long run. Be honest about what you’re offering. Q: How can tradies build a strong brand like True Value Solar? A: Consistency and visibility are key. Use multiple channels—TV, online, websites and sponsorships—to keep your brand in front of potential customers. But unlike True Value Solar, ensure your product quality matches your marketing promises. Q: What’s one marketing strategy tradies can learn from True Value Solar? A: Leverage partnerships and sponsorships. Associating your brand with well-known entities, like a local sports team, can boost credibility and visibility. The Takeaway Chatting with Pat was a blast. From the crazy defects to the wild marketing strategies, it’s clear the solar industry has had its ups and downs. But with legends like Pat keeping an eye out, we’re in good hands . Catch you next time, legend! --- ## Podcast Ep 9: The Past, Present & Future of the Water Industry💧with Noel McKay from Jonoco URL: https://trademagnet.com.au/resources/podcast/ep-09-the-past-present-and-future-of-the-water-industrywith-noel-mckay-from-jonoco G’day Legends! The Digital Tradie Podcast | Episode 9 G’day Legends! In the latest episode of “The Digital Tradie,” I had an absolute ripper of a chat with Noel McKay from Jonoco . Noel’s been in the water industry for over three decades, and let me tell you, he’s got some cracking stories and top-notch advice that only someone with his experience could share. A Journey Spanning Over 32 Years Noel’s journey in the water industry is nothing short of legendary. Starting back in the day when word-of-mouth was the main way to get work, Noel shared how Jonoco managed to thrive without traditional advertising for over 32 years. It’s a testament to the power of quality workmanship and the rock-solid reputation Jonoco has built over the years. Unforgettable Poo Stories One of the best parts of our conversation was hearing Noel’s hilarious and somewhat messy on-the-job stories. From diving into waist-deep sewage to unblocking pumps to apprentices standing on the crust of sewage lagoons, these stories painted a vivid picture of the unexpected humour and challenges in the water industry. It’s these yarns that make the industry both demanding and endlessly entertaining. The Impact of Privatisation Noel also gave us the lowdown on the impact of privatisation (by the Kennett Government in 1992) on the water industry. He detailed the significant changes that occurred when public entities like the Melbourne Metropolitan Board of Works were privatised. This shift brought about a range of challenges and opportunities, especially in how services were delivered and the importance of keeping a skilled workforce. Training the Next Generation A critical point Noel hammered home was the importance of training the next generation of tradies. With a noticeable gap in apprenticeships over the years, Noel advocates for more robust training programmes to ensure the industry continues to thrive. He shared Jonoco’s commitment to hiring and training apprentices , reflecting on the long-term benefits it brings to both the company and the industry. Since 1990, realistically the amount of apprentices that have been put through by the major contractors is frankly crap. Noel McKay – Jonoco Embracing Innovation and Diversification In our discussion, we also touched on how Jonoco has embraced innovation and diversified its services. From integrating advanced project management tools like Aroflo to acquiring specialised businesses, Jonoco has continually adapted to meet the evolving needs of the industry. This approach not only keeps the business competitive but also ensures they can offer comprehensive solutions to their clients. The Importance of Websites for Tradies We all know that having a solid online presence is crucial these days, and Noel’s story really drives that home. For years, Jonoco got by on reputation alone , but as times changed, so did their approach. Having a professional website is like having an extra team member working 24/7. It showcases your services, builds credibility, and helps potential clients find you easily. Trust me, having an AWESOME Website for Tradies can make all the difference in landing that next big job. A Look to the Future Looking ahead, Noel is optimistic about the future of the water industry. Despite the challenges posed by cost optimisation and the need for ongoing training, he sees a future filled with opportunities for those willing to adapt and innovate. Jonoco’s story is a perfect example of how dedication, quality, and a willingness to embrace change can lead to sustained success. Conclusion This episode with Noel McKay was a ripper – full of laughs, insights, and practical advice. It’s clear that the water industry, while often overlooked, plays a crucial role in our daily lives . I hope this conversation inspires you as much as it did me, shedding light on the importance of the past, present, and future of the water industry. Stay tuned for more episodes of “ The Digital Tradie ” where we continue to bring you stories and insights from the frontline of the trades. --- ## Podcast Ep 8: Web Developer Vs Web Designer👨‍💻 What Tradies Need to Know with Stuart Mclean URL: https://trademagnet.com.au/resources/podcast/ep-08-web-developer-vs-web-designer-what-tradies-need-to-know-with-stuart-mclean G’day Legends! The Digital Tradie Podcast | Episode 8 G’day Legends! In this episode, I had the pleasure of chatting with Stuart, who has made a fascinating transition from being a tradie to a web developer. Stuart’s story is a testament to the endless possibilities available when you decide to pivot your career. We discussed everything from web design basics to the nitty-gritty of HTML, CSS, and JavaScript . The Basics: HTML, CSS, and JavaScript We started by breaking down the three core technologies that make up most web pages: HTML : This is the backbone of your web page. It defines the structure and the content. CSS : This is all about style. CSS makes your page look good with colors, fonts, and layouts. JavaScript : This adds the magic. JavaScript makes your web page interactive and dynamic. Web Design vs. Web Development One of the key topics we tackled was the difference between a web designer and a web developer. Many tradies looking to get their business online might not know who they need. Stuart explained it well: Web Designers focus on the aesthetics and usability of a site. They use tools like WordPress with builders like Elementor or Divi to create visually appealing websites without needing deep coding knowledge. Web Developers handle the technical side. They write code to implement complex features and ensure the site functions smoothly. This is where HTML, CSS, and JavaScript come into play. WordPress and Block Builders WordPress is a popular platform for creating websites because of its flexibility and the vast ecosystem of plugins. However, as Stuart pointed out, it can also be a bit of a double-edged sword. Builders like Elementor and Divi make it easy to create sites, but they can also add a lot of unnecessary code, slowing down your site. The Pros and Cons of Block Builders Stuart shared some valuable insights into the pros and cons of using block builders: Pros : Easy to use: No deep coding knowledge required. Quick setup: Faster to get a site up and running. Flexibility: A wide range of themes and plugins to choose from. Cons : Performance issues: Can add unnecessary code, slowing down your site. Limited customisation: Sometimes challenging to make specific changes without diving into the code. Maintenance: Regular updates needed to keep everything running smoothly. Tips for Tradies Keep It Simple : Your site doesn’t need to be overly complicated. Focus on making it fast and user-friendly. SEO Matters : Use SEO plugins to ensure your site is easily found on Google. Ask Questions : When hiring someone to build your site, ask about their approach and the tools they use. Make sure they’re considering site speed and SEO from the start. The Future of Trades: Flexibility and Adaptability We also discussed the importance of flexibility in the trades. As the digital world evolves, so too must the trades. Offering flexible working hours and being open to new technologies can set your business apart. Stuart shared his experiences of needing flexibility to balance his coding work with teaching jujitsu, emphasizing how crucial it is for employers to adapt to the changing landscape. Learning to Code: Stuart’s Advice For those interested in learning to code, Stuart offered some great advice: Start Small : Begin with basic HTML, CSS, and JavaScript. Use Open Source Resources : Platforms like Udemy and The Odin Project offer excellent courses. Practice : Work on small projects and gradually take on more complex tasks. Get Involved : Contribute to open-source projects on platforms like GitHub to build your skills and network. The Importance of a Well-Structured Website A well-structured website is essential for user experience and SEO. Stuart emphasized the need for clean, efficient code and the dangers of overloading a site with too many plugins or unnecessary features. We also touched on the importance of responsive design – ensuring your site looks great on all devices, from desktops to smartphones. Conclusion I had a bloody awesome chat with Stuart, and I hope you found our conversation helpful. If you’re a tradie looking to get online, remember that a well-constructed, fast-loading, and SEO-optimized website can make all the difference. Whether you choose a web designer or a web developer, understanding the basics will help you make informed decisions. Thanks for tuning in to “The Digital Tradie.” Make sure to like and leave a review on the podcast, and share it with your mates. Until next time, keep creating legendary content! --- ## Podcast Ep 7: Using Story to Create an AWESOME Safety Culture🦺 David List at the AIHS Conference URL: https://trademagnet.com.au/resources/podcast/ep-07-using-story-to-create-an-awesome-safety-culture-david-list-at-the-aihs-conferenc G’day legends👍 The Digital Tradie Podcast | Episode 7 G’day legends👍 Today, we’re diving into the world of safety – yes, I know, it sounds about as exciting as watching paint dry. But stick with me, I promise there’ll be laughs, some cringe-worthy moments , and maybe even a nugget of wisdom. So, grab your morning coffee (or arvo beer) and let’s get into it. Oh and BIG thank you to the Australian Institute of Health and Safety for letting me roast their members. 1. The Thumbnail So, there I was, staring at a sea of serious safety officers. And me, being the genius I am, thought, “Why not start with a laugh?” Bad move. I asked the crowd, “Who knows what a thumbnail is? Not the one on your hand, but the YouTube kind.” Silence. Crickets. Tumbleweeds. thinkLIST mockup thumbnail I then instructed them to look annoyed for the photo – after all, annoyed safety officers would make the perfect thumbnail for my YouTube video titled “I Roasted Hundreds of Safety Officers.” Let’s just say their annoyed faces weren’t hard to come by. Thanks, Stuart, for capturing that moment of pure awkwardness. 2. Joking with Safety Officers – Big Mistake Here’s a tip: if you ever want to feel like a complete idiot, tell a joke about safety procedures to safety officers. My opening line? “How many safety officers does it take to change a light bulb? None, because it’s knock-off time by the time the risk assessment is finished.” Cue the frosty reception. I’ve never seen so many blank stares in my life . Lesson learned: safety officers don’t mess around with light bulb jokes. If a washed-up tradie like me can do it, so can you. Dave List 3. The Band-Aid Saga A while back, I cut my finger on a job site – nothing major, just a tiny nick. So, I went to find the safety officer to report it. Turns out, he was “in the Act” with Liz. Now, get your minds out of the gutter – they were stitching harnesses for confined spaces. I waited, finger bleeding, while they were deep in their safety shenanigans. Eventually, I patched myself up with an out-of-date Band-Aid. The things we do in the name of safety, right? 4. My YouTube Journey I started a YouTube channel called ThinkLIST . Initially, I made videos about tiny tech tips – you know, riveting stuff like “How To Open Command Prompt As Administrator” or “10 Things Outlook Can Do For You” Yeah, those videos flopped hard… Then I switched to electrical content and BAM! The views started rolling in. The secret? Storytelling. Turns out, people love a good yarn, especially if it involves a tradie making a fool of himself. The Hero’s Journey and ABT (And, But, Therefore) I discovered storytelling techniques like the Hero’s Journey and the ABT framework. Here’s how it works: AND: Sets the scene. “Rob put on his harness and climbed into the confined space.” BUT: Introduces a problem. “But the stitching began to break.” THEREFORE: Resolves the issue. “Therefore, Rob swung to a ledge and waited for help.” Simple, yet powerful. The ABT Storytelling Technique 5. Applying ABT to Safety: A Live Workshop Now, let’s have some fun with ABT in a safety context. Imagine this hazard: getting hit by a car . Here’s how it could play out: Hazard: Getting hit by a car. Story: Dave knelt down to grease a valve. But as he stood up, a car zoomed by, nearly taking his head off. Therefore, his team decided to use traffic management at night. See how much more impactful that is? Personal Story: The Electric Shock Incident Now, close your eyes and imagine you’re 21 again. You’re leading a project in the heart of the city. One day, you turn off your phone for a movie, only to find out later that a tradie got shocked and fell off a ladder because of a mistake you made. That apprentice was me. This incident crushed me, but it taught me the importance of safety storytelling. Conclusion Embrace storytelling! It’s your secret weapon in changing behaviors and improving safety cultures. And remember, if a washed-up tradie like me can do it, so can you. Thanks for sticking around, and stay safe ya LEGEND! Cheers! --- ## Podcast Ep 6: The Future of the Generator Hire Industry⚡Ben Cresswell from Eastern Generators URL: https://trademagnet.com.au/resources/podcast/ep-06-the-future-of-the-generator-hire-industryben-cresswell-from-eastern-generators G’day Legends 👍 The Digital Tradie Podcast | Episode 6 G’day Legends 👍 I’m pumped up to share some insights from my recent conversation with Ben from Eastern Generators Hire . We delved into the world of generators, discussed the importance of sustainability, and explored digital marketing strategies for tradies. Let’s get into it! Getting Started in the Generator Business Ben’s journey into the generator business began with an apprenticeship where he worked with a company that specialised in data centers and generator installs. His entrepreneurial spirit was further fueled by his family’s engineering recruitment business, which often hired out computers. Transitioning from Electrical Contracting to Generators Initially, Ben’s business focused on general electrical contracting. They did a lot of work for wineries, breweries, and distilleries, which naturally led to the installation and maintenance of backup generators. Over time, the focus shifted entirely to generators, and Eastern Generators Hire was born. Now, they provide not only rental services but also comprehensive turnkey solutions. Generator Range and Services Eastern Generators offers a wide range of generators, from 20KVA to 1500KVA , with the 60-100KVA units being particularly popular. They also provide essential ancillary services like lighting towers , cable ramps, and refueling services, ensuring that clients get a complete solution rather than just equipment. Embracing Digital Marketing Transitioning to digital marketing has been a significant step for Ben’s business. Working with LIST Media , he found the transparency and effective tracking of marketing efforts to be crucial. This shift has ensured that every marketing dollar is well spent, directly correlating with increased leads and better customer engagement. For tradies looking to engage with a Digital Marketing Agency , Ben emphasizes the importance of understanding the product from a technical perspective and maintaining transparency in all business dealings. This approach not only builds trust with clients but also ensures long-term success. The Generator Sizing Calculator One of the exciting digital tools we’ve implemented for Eastern Generators is a Generator Sizing Calculator . This tool allows customers to input their requirements, like the motors they want to run and their operating conditions, and it provides a suggested generator size. It even generates a detailed PDF report. This has made it much easier for clients to determine their needs and get accurate recommendations, streamlining the entire process. The Future of Power Generation Looking to the future, Ben sees a significant shift towards sustainability in the power generation industry. The upcoming legislation on emissions control is expected to transform how generators operate, with a greater emphasis on reducing environmental impact. Here are some key points we discussed: The Future of Generators – Ben Cresswell from Eastern Generators Hire 1. Emissions Control: Currently, many industrial engines in Australia lack emissions control technologies . However, within the next few years, it’s anticipated that all industrial engines will be required to include emissions control systems. This means integrating technologies like AdBlue and other exhaust control mechanisms to reduce harmful emissions. 2. Renewable Integration: Generators will increasingly be paired with renewable energy sources such as solar panels and battery storage systems . This hybrid approach can significantly reduce fuel consumption and reliance on diesel. For instance, in remote projects, solar and battery systems can handle the primary load, with generators providing backup power only when needed. This not only cuts down on fuel costs but also minimizes environmental impact. 3. Alternative Fuels: The industry is also exploring alternative fuels like hydrogen . Although hydrogen generators are currently cost-prohibitive, ongoing research and development could make them more viable in the future. Hydrogen offers a cleaner alternative to traditional fossil fuels, and its adoption could further reduce the carbon footprint of power generation. 4. Industry Growth: Despite these changes, the demand for reliable power generation isn’t going away. In fact, as the grid faces increasing strain and as more sites require dependable backup power, the generator industry is poised for growth . The focus will be on cleaner, more efficient technologies that align with global sustainability goals. 5. Technological Advancements: With advancements in technology, generators are becoming smarter and more efficient. The integration of remote monitoring systems allows for real-time tracking of fuel levels, performance metrics, and potential issues, enabling preemptive maintenance and reducing downtime. Ben is optimistic about these changes, seeing them as opportunities rather than challenges. By staying ahead of the curve and embracing new technologies, Eastern Generators aims to continue providing reliable and sustainable power solutions. Insights for Tradies For those just starting out, finding a company that values continuous learning and provides opportunities for growth is essential . At Eastern Generators, Ben emphasizes the importance of training and development. Employees are encouraged to build on their existing skills and gain new certifications, ensuring they are well-equipped to handle the evolving demands of the industry. Moreover, Ben highlights the importance of a positive workplace culture . A supportive environment where team members collaborate and support each other can make a significant difference in job satisfaction and retention. For new apprentices, seeking out a company that fosters such a culture can be incredibly beneficial for career development. Conclusion My chat with Ben was not only insightful but also highlighted the importance of adapting to industry changes and leveraging digital marketing to grow a trade business. If you’re in the trade industry and looking to expand your knowledge, tune into “ The Digital Tradie ” for more tips and expert advice. If you need any help with your Digital Marketing or maybe you’re after a tool like Ben’s Generator Sizing Calculator , you can contact me via the online form or give us a call . --- ## Podcast Ep 5: How This Tradie Grew His Business By 181%🚀 Jarryd Miller from Building Site CCTV URL: https://trademagnet.com.au/resources/podcast/ep-05-how-this-tradie-grew-his-business-by-181percent-jarryd-miller-from-building-site G’day Legends 👍 The Digital Tradie Podcast | Episode 5 G’day Legends 👍 This week, I sat down with Jarryd Miller from Building Site CCTV (BSCCTV), who has transformed his passion for security into a rapidly growing business tailored specifically for building sites. Here’s a breakdown of our chat, packed with actionable insights for tradies looking to scale their business. Starting Small and Mastering Local SEO Jarryd’s entry into the security business wasn’t just about following in family footsteps; it was about innovating for local impact. His initial business, Rangers Alarms , was strategically designed to serve the Yarra Ranges, leveraging SEO tactics (Programmatic SEO) to dominate local search results—a critical step for any tradie aiming to boost visibility on Google. Innovating in Security with BSCCTV Transitioning from Rangers Alarms to BSCCTV, Jarryd harnessed a demand, into opportunities, diving into the niche of solar-powered CCTV for building sites . His journey from identifying a gap—the need for robust, scalable security solutions—to developing a thriving business, BSCCTV, showcases the power of responsive innovation in the security industry. Streamlining Operations for Growth Jarryd emphasizes the importance of backend efficiency, using smart software solutions like Trade Magnet , to streamline everything from scheduling to invoicing. This not only improves customer service but also frees up valuable time, allowing tradies to focus on what they do best—quality workmanship and service. For tradies looking to scale, adopting similar tools can be a game changer in managing growth smoothly. Emphasizing Deterrence in Security A standout lesson from Jarryd is the focus on deterrence in security —preventing issues before they occur. His approach blends high-tech solutions with a deep understanding of what makes a site secure, from equipment choice to strategic placement. For tradies (builders in particular), adopting a preventative mindset can apply, not just to security but to all aspects of business, ensuring stability and customer satisfaction. Key Takeaways – Jarryd Miller from Building Site CCTV Building a Team-Focused Culture What truly sets BSCCTV apart is its commitment to a supportive, team-focused work environment. Jarryd’s leadership style fosters a culture where every team member feels valued, which is essential for sustaining growth and ensuring that everyone is aligned with the company’s goals. For tradies looking to expand, fostering a similar culture can lead to increased employee satisfaction and retention. Conclusion Jarryd’s story is a testament to the power of combining digital technology , with a strong focus on local market needs and operational efficiency. His success with BSCCTV provides a blueprint for tradies everywhere: embrace technology, enhance local SEO efforts, streamline operations, and maintain a strong team culture. This blend not only drives business growth but also enhances the overall service offering to clients. Join me next time on “ The Digital Tradie ” for more stories and tips that help you harness the power of digital tools and team dynamics. Don’t forget to subscribe and share this podcast with your network or anyone keen on taking their trade business to the next level! --- ## Podcast Ep 4: Real Tax Advice for Tradies💰 Lynne List from Shine Accounting and Taxation URL: https://trademagnet.com.au/resources/podcast/ep-04-real-tax-advice-for-tradies-lynne-list-from-shine-accounting-and-taxation G’day Legends, The Digital Tradie Podcast | Episode 4 G’day Legends, In the first guest episode, I had the pleasure of speaking with Lynne List (my Mum) from Shine Accounting and Taxation, who shared her invaluable insights into managing the financials of a trade business. Why Accounting Shouldn’t Be DIY Lynne kicked off the chat with a crucial point: good accounting is non-negotiable. Emphasizing that many tradies might try to handle their books themselves to save money, but this can often lead to costly mistakes. It’s like trying to fix a leak with duct tape—temporary and probably going to need a professional fix eventually. Top Tip for Tradies: Keep Those Receipts If there’s one takeaway Lynne stressed for everyone, it’s the importance of keeping your receipts organised. Misplaced receipts are missed opportunities for deductions, and that’s like leaving money on the table—or worse, in the walls of a job site, never to be seen again. The Cost of Cutting Corners When it comes to taxes, cutting corners can end up being more expensive in the long run. Lynne highlighted that small errors in bookkeeping might not only cost you financially but could also attract the dreaded ATO. Ensuring you have professional help with your books is like having the right measurements before you cut—essential for getting it right the first time. Lynne List from Shine Accounting and Taxation – Top Tips for Tradies From Sole Trader to Incorporated: Timing Your Business Growth Understanding when to shift from a sole trader to a corporate structure is another area where Lynne provided clarity. This decision is critical and can protect and grow your business effectively, much like upgrading your tools as your skills expand. Debunking Tax Deduction Myths: Can You Claim Your Dog? One of the more surprising moments of our chat was when Lynne addressed the possibility of claiming your dog as a tax deduction. Yes, you read that right! If your furry friend doubles as a security guard for your tools on the job site, their expenses could potentially be deductible. This includes costs like food and vet bills, provided the dog is primarily used for security. It’s an unconventional write-off, but it’s a testament to the intricacies of tax law! Conclusion: Professional Advice Is Key To wrap up, Lynne reminded us of the importance of personalised professional advice. Every trade business is unique, and while general tips are helpful, specific guidance from a tax professional is indispensable. If you need Tax advice you can contact Lynne at https://www.shineaccounting.com.au/ . Additionally, if you need any help with Digital Marketing check what LIST Media has to offer. --- ## Podcast Ep 3: Is HiPages Worth it for Tradies URL: https://trademagnet.com.au/resources/podcast/ep-03-is-hipages-worth-it-for-tradies G’day Legends, The Digital Tradie Podcast | Episode 3 G’day Legends, In this episode, I’m tackling a hot topic that’s been buzzing around the tradie grapevine—whether HiPages is a solid choice for getting more work. Recently, a family friend asked me if HiPages would be a good stock to invest in. My response might have caught him off guard, but it’s rooted in both experience and real talk from the trenches. Understanding Lead Generation Platforms Platforms like HiPages act as middlemen, connecting homeowners needing work done with tradies eager to pick up extra jobs. On paper, this sounds like a win-win, right? Well, let’s dig a bit deeper. The Realities of Lead Quality Righto, here is where I let the cat out of the bag—not just on HiPages, but on most lead gen platforms. The leads you buy can be hit or miss. You might end up chasing after leads that are more about the chase than the catch. Imagine this: you’re a sparky, and you land a lead to replace a simple switch. Easy peasy. But then the client turns out to be more high-maintenance than a plumber with a sore thumb. You’ve paid for the lead, but end up paying even more in hassle. That’s not the kind of return on investment any tradie wants. Weighing the Costs These platforms can feel like a lifesaver when you’re drowning in slow times. Many tradies I’ve chatted with see HiPages as a temporary fix. They jump on when the going gets tough and jump off once better work comes along. If it’s a cycle of quick fixes, you’ve got to ask—does it really make cents? Pun intended. HiPages – Pro’s & Con’s of using the platform. Smarter Marketing Moves If you’re in dire straits for leads, throwing your hard-earned dough at Google Ads or Facebook Ads might give you more bang for your buck. These platforms allow you to target your ads like a laser—straight to the heart of potential customers who are genuinely interested in quality work. Of course, if you need help LIST Media uses a super simple paid ads fee structure to get you started. Tool of the Week: CapCut On a lighter note, let me shine a light on CapCut . This tool is a game-changer for editing videos, making it a breeze to polish up your social media presence. It’s as handy as a multi-tool at a fix-up job. Final Thoughts While HiPages might offer a quick fix, it’s a bit like using a sledgehammer to crack a nut—overkill and not sustainable. Investing in your own marketing strategies attracts better quality leads—customers who don’t just come for the price but stay for the service. If you’ve got any thoughts or questions about lead generation, feel free to reach out. --- ## Podcast Ep 2: Facebook Ads Vs Google Ads - Which One Should Tradies Use? URL: https://trademagnet.com.au/resources/podcast/ep-02-facebook-ads-vs-google-ads-which-one-should-tradies-use Whether you’re gearing up to launch your first online ad campaign or looking to tweak your current one, you’ll want to stick around for some tips on making the most of Facebook and Google Ads. The Digital Tradie Podcast | Episode 2 Whether you’re gearing up to launch your first online ad campaign or looking to tweak your current one, you’ll want to stick around for some tips on making the most of Facebook and Google Ads. Google Ads: Intent Advertising When people head to Google with a specific search, they’ve got intent—like looking up the best local plumber. Google Ads are perfect for capturing this intent because when potential customers type in what they need, your service pops right up if it matches. It’s direct, powerful, and great for tradespeople whose services are in immediate demand. Facebook Ads: Interrupt Advertising Now, let’s switch gears to Facebook. This platform is what we call interrupt-based advertising. Why? Because your ad pops up while potential customers are scrolling through their feed, not actively searching for your services. It’s about catching their eye and planting the seed of your service in their minds. Ideal for building awareness and catching people who might not even realize they need your services yet. Understanding the Marketing Funnel To get the most out of your advertising efforts, it’s crucial to understand the marketing funnel. This concept helps you tailor your ads based on how aware your audience is of the problems they face, which you can solve. ToFu, MoFu and BoFu Marketing Funnel Top of Funnel (TOFU) These are potential customers who are likely unaware they even have a problem that needs solving. Here, you’re just making them aware that there’s a potential need. Middle of Funnel (MOFU) Here, people are aware of the problem and are actively searching for solutions. They’re not ready to commit yet but are gathering information. Bottom of Funnel (BOFU) These customers know what they need and are ready to decide. They’re evaluating their options, and this is your chance to swoop in and show why your service is the best choice. Which Platform Fits Your Needs? Deciding between Google and Facebook Ads doesn’t have to be an either/or scenario. Consider where your potential customers are in the marketing funnel: Use Google Ads for those at the bottom of the funnel with high intent and ready to act. Use Facebook Ads to generate awareness and interest at the top and middle of the funnel. Tech Tool of the Week: Canva To wrap things up, if you’re stepping into the world of Facebook Ads, you’ll need some eye-catching creatives. Canva is a fantastic tool for this, making it easy to design visuals that grab attention and engage potential customers. That’s it for today, mates! Whether you choose Google, Facebook, or a mix of both, remember that the right approach depends on understanding your customers’ needs and where they stand in the buyer’s journey. Keep things legendary, and until next time, this has been David List from “The Digital Tradie.” --- ## Podcast Ep 1: How TRADIES can use STORYTELLING to craft their Message URL: https://trademagnet.com.au/resources/podcast/ep-01-how-tradies-can-use-storytelling-to-craft-their-message Welcome to the very first episode of the Digital Tradie podcast! I’m Dave List, and I’m here to guide you through the jungle of online marketing, specifically tailored for you, the hardworking tradies. Today, I’m diving deep into the Storybricks framework, a tool I believe will r The Digital Tradie Podcast | Episode 1 Welcome to the very first episode of the Digital Tradie podcast! I’m Dave List, and I’m here to guide you through the jungle of online marketing, specifically tailored for you, the hardworking tradies. Today, I’m diving deep into the Storybricks framework, a tool I believe will revolutionize how you connect with your clients online. The Power of Storytelling in Marketing I’ve always believed that storytelling is fundamental, regardless of the medium. At LIST Media , we create content that not only captures attention but converts. Storybricks is designed to supercharge your video content, although its principles are versatile enough for any form of communication—from your website to print media. Why Storybricks? I’ve run a YouTube channel, Thinklist, where I noticed certain content resonated and gained more views while others didn’t. This led me down the rabbit hole of storytelling techniques, culminating in the creation of a free PDF that I offer on my website, listmedia.com.au. This document is packed with exercises and insights into effective messaging, crucial for any marketing strategy. The Foundations of Effective Marketing Let’s talk specifics about building an engaging story. I liken it to constructing a house because, as tradies, we understand how a sturdy house should be built: Story as the Foundation : Crafting an engaging, relatable story is like laying the foundations of a house. It’s about using proven frameworks to build narratives that speak directly to your audience. Messaging with Precision : Once the story is laid out, the messaging is what builds the walls. It’s about aligning your story with the needs and desires of your ideal customer—your ‘avatar’. Implementing the ABT Framework One of the key techniques I discuss is the ABT framework—And, But, Therefore. Developed by Randy Olson, it helps structure your content by starting with an agreement (And), introducing a problem (But), and concluding with a solution (Therefore). It’s a powerful tool that can be applied to any marketing content to ensure it’s engaging and results-driven. Exercises for Real-World Application During the podcast, I guide you through using the ABT in real-time scenarios, such as promoting a smoke detector service. This kind of practical exercise helps you grasp how to apply storytelling techniques in everyday business situations, enhancing both your brand awareness and customer engagement. The Story List Strategy To further refine your messaging, I introduce the Story List strategy—Legend, Issue, Strategy, Triumph (LIST). This method helps you target your marketing more precisely by focusing on: Legend (L) : Your ideal customer. Issue (I) : The problem they face. Strategy (S) : Your approach to solving their issue. Triumph (T) : The successful resolution and benefits your customer will experience. By using the Story List, you can craft messages that not only address specific customer needs but also resonate on a deeper emotional level, ensuring your business stands out in a crowded marketplace. Conclusion I’m excited to share these insights and more in future episodes of the Digital Tradie podcast. If you found today’s session useful, don’t forget to subscribe and download the free PDF from my website. Here’s to creating legendary content that not only tells a great story but also drives your business forward. Until next time, keep building those connections that turn prospects into loyal customers.