DEV Community

Zachariah Mi
Zachariah Mi

Posted on • Originally published at aplosai.com

How to Automate Sales Follow

class="article-body">

The 5-touch sequence that works

    You don't need a complex drip campaign. What works for most service businesses is a five-touch sequence over seven days, then a handoff to a monthly nurture list. Here's how it maps out:


      - 1

          Immediate — within 5 minutes of form submission
          Confirmation email
          Confirm receipt, briefly introduce your business, and set an expectation for next steps. Keep it short. This is not a sales pitch — it's proof you're real and responsive. Include one clear next step (book a call, reply with questions, etc.).
      - 2

          15 minutes later — if form included phone number
          Text message
          A short, direct text from a real number (not a shortcode). Something like: "Hey [First Name], saw your inquiry — happy to answer any questions. This is [Your Name] from [Business]." It humanizes the contact before anyone actually calls.
      - 3

          Day 2 — value email
          Specific value hook
          A case study, a short FAQ, or a relevant testimonial — something that reduces friction and answers the questions most leads have before committing. Don't just resend the same pitch. Give them a reason to reply.
      - 4

          Day 4 — direct ask
          Check-in email
          "Are you still looking for help with [specific service]? Happy to jump on a quick call if the timing's right." Short, direct, no fluff. People who were waiting for a reason to respond often reply here.
      - 5

          Day 7 — close the loop
          Breakup email
          "I'll follow up in 30 days if the timing isn't right — no pressure." This email converts better than most people expect. It removes pressure and gives the lead an easy exit, which paradoxically triggers replies from people who were just slow to engage.


    After touch 5: move the contact to a long-term nurture list. A monthly check-in — relevant tip, quick resource, or just a short note — keeps you top of mind for people who weren't ready when they first came in.


      "Most deals that close from automated sequences close before day 5. The later touches catch leads that were genuinely interested but slow to respond — not a small group."
Enter fullscreen mode Exit fullscreen mode

What you actually need to build this

    Three components. That's it. The whole thing fails if any one of them is missing or misconfigured.



        Component 1
        A trigger
        Form submission from your website, Calendly booking, inquiry from Google Business Profile, or an inbound text. The trigger is what starts the sequence. If you don't have a reliable trigger, nothing fires consistently.



        Component 2
        A workflow engine
        n8n, Make, or Zapier. This is the logic layer that receives the trigger, applies conditions, and sends the right messages at the right times. We use n8n for most clients — it handles conditional logic well and doesn't charge per task at scale.



        Component 3
        Sending tools
        Email: any SMTP, SendGrid, or your existing Gmail via the Gmail API. SMS: Twilio at ~$0.0079 per message. Most service businesses doing moderate follow-up volume spend $10–$25/month on Twilio.




    For tool choice specifics — n8n vs. Make vs. Zapier trade-offs, pricing at scale, and which is easiest to maintain — see the [full comparison here](/blog/).

    If you'd rather skip the DIY route, we're an [n8n automation agency](/n8n-agency) that builds and maintains follow-up sequences for small businesses.


      **HBR research (Oldroyd et al., 2011):** Leads contacted within 1 hour are 7x more likely to convert than those contacted 2 hours later. At 24 hours, the odds drop by a factor of 60. Automated sequences eliminate the delay entirely — the first touch fires in minutes, every time.
Enter fullscreen mode Exit fullscreen mode

What makes most DIY sequences fail

    Building a follow-up sequence is not technically hard. Getting it to work reliably without breaking things is where most businesses stumble. Four failure modes show up repeatedly:


      - 01

          **Sequence doesn't stop when someone books**
          The most common mistake. A lead books a call on day 2, and then receives the day 4 "are you still interested?" email. It signals that your systems don't talk to each other — and it's embarrassing. Your workflow needs to listen for booking events (a Calendly webhook, for example) and cancel remaining steps immediately.
      - 02

          **No conditional logic — everyone gets the same emails**
          A lead who submitted a form asking about commercial jobs gets the same nurture email as someone looking for residential service. A lead who opened your day 2 email three times gets the same day 4 email as someone who opened nothing. Without branching logic, your sequence treats all leads identically, which reduces relevance and conversion.
      - 03

          **Sending domain isn't warmed up**
          If you're sending automated email from a new domain or subdomain that hasn't built a sending reputation, a large portion of your messages will land in spam — even if the content is clean. Domain warming takes 4–6 weeks of gradual volume increase. Skipping this step is why some businesses swear follow-up automation "doesn't work" — the emails aren't arriving.
      - 04

          **Sequence built in a tool that isn't connected to the actual lead source**
          A CRM sequence only runs if the lead is already in the CRM. If your leads come in via your website form, Google Business, Thumbtack, or any other external source, someone has to manually add them to trigger the sequence. That manual step is where follow-up dies. The fix is a workflow engine that bridges the gap automatically.
Enter fullscreen mode Exit fullscreen mode

CRM vs. workflow engine — which one you actually need

    Most CRMs have built-in email sequences. HubSpot has sequences. ActiveCampaign has automations. Pipedrive has workflows. The limitation they share: the lead has to be in the CRM before any of it triggers.

    If your leads come in exclusively through a source the CRM natively monitors — a HubSpot form on a HubSpot-hosted page, for example — the CRM sequence can work on its own. But most small businesses have leads coming in from multiple places: website forms on non-CRM platforms, Google Business inquiries, Thumbtack, Angi, inbound texts, referrals entered manually. The CRM sequence doesn't fire for any of those unless there's a connection step.

    That connection step is what a workflow engine handles. n8n or Make receives the lead from wherever it originated, creates the CRM contact if needed, and then either triggers the CRM sequence or runs the email and SMS sequence directly. It's the layer most businesses skip — and the reason their CRM sequences never actually run consistently.


      **Not sure if your current setup is actually firing?** We run a free audit that includes checking whether your lead capture connects to your follow-up tools. Most businesses find at least one break in the chain.

      [Get the Free Audit →](/audit)
Enter fullscreen mode Exit fullscreen mode

The full setup for a service business

    Here's how the complete flow looks when it's built correctly:


      End-to-end follow-up sequence — service business

        - →
          Lead submits form (Typeform, Jotform, or custom website form)
        - →
          n8n receives webhook from form tool
        - →
          n8n checks HubSpot (or your CRM) — does this contact already exist?
        - →
          If no: creates contact, sets deal stage to "New Lead"
        - →
          Touch 1 fires: confirmation email via SendGrid or Gmail API
        - →
          Touch 2 fires: text via Twilio (if phone number present)
        - →
          Touches 3–5 fire on day 2, 4, 7 schedule
        - →
          Calendly webhook fires when contact books a call
        - →
          n8n receives booking event, cancels remaining sequence steps
        - →
          CRM contact updated to "Booked" — sequence archived



    The booking-cancels-sequence step is the one most businesses forget to build. It's also the most important — it's what prevents follow-up emails from firing after the deal is done.
Enter fullscreen mode Exit fullscreen mode

What it costs to build this

    The tools themselves are cheap. The build cost is where most businesses either pay someone to do it right, or spend weeks trying to figure it out themselves.


      Monthly tool cost — typical service business

        n8n (self-hosted on a $6/month VPS)
        ~$6/mo


        n8n cloud (if you prefer managed)
        $20/mo


        Twilio SMS — 500 messages/month
        ~$4/mo


        SendGrid — up to 100 emails/day
        Free


        Total ongoing tool cost
        $10–$26/mo



    The one-time build cost from Aplos AI for a complete sales follow-up automation — form trigger, email sequence, SMS, CRM integration, booking detection, and sequence cancellation — runs $2,000–$4,000 depending on the number of lead sources and CRM complexity. That's a one-time cost. The tools run for $10–$26/month after that.

    For context on what automations cost across different project types, the [full pricing breakdown](/blog/how-much-does-automation-cost) covers it in detail. And if you're weighing whether to build this yourself or hire someone versus automating the function entirely, [automation vs. hiring](/blog/automation-vs-hiring) runs the cost math.


      n8n
      Make
      Zapier
      Twilio
      SendGrid
      Gmail API
      HubSpot
      Calendly
      Typeform
      Jotform






    Related reading
    [n8n vs. Make vs. Zapier](/blog/) — which workflow engine to use and when each makes sense.

    [Automation vs. Hiring](/blog/automation-vs-hiring) — when to build instead of adding headcount to handle follow-up manually.

    [How Much Does Automation Cost?](/blog/how-much-does-automation-cost) — real pricing across different project types and complexity levels.

    [Free Automation Audit](/audit) — we'll look at your current lead capture and tell you exactly what to build.
Enter fullscreen mode Exit fullscreen mode

Get your follow-up running automatically.

    Free audit. 30 minutes. We'll map your lead sources, identify the gaps in your follow-up, and tell you what it'll take to close them.

    [Book Your Free Audit →](https://calendly.com/aplosai-info/free-30-minute-discovery)
Enter fullscreen mode Exit fullscreen mode

Frequently asked questions

      How many follow-ups should I send?
      Five touches over seven days is the baseline that works for most service businesses: immediate email, a text 15 minutes later, a value email on day 2, a direct ask on day 4, and a close-the-loop email on day 7. After that, move the lead to a long-term nurture list — monthly check-ins for the next few months. Most deals that close from automated sequences close before day 5; the later touches catch the ones that were just slow to respond.



      Can I use my existing email for automated follow-up?
      Yes, with caveats. You can send automated email through Gmail or Outlook via their APIs, but you need to warm the sending domain first and keep volume reasonable (under 200/day for a new domain). For higher volume, SendGrid or similar transactional email services are more reliable and easier to monitor for deliverability issues.



      What if someone replies — does the sequence stop?
      It should, and this is one of the most common failure modes in DIY sequences. You need your workflow engine (n8n, Make, or Zapier) to monitor for replies and cancel the remaining steps when a reply or a booking is detected. Without this logic, contacts receive follow-up emails after they've already responded or booked — which kills trust fast.



      Do I need a CRM to automate follow-up?
      No. A workflow engine like n8n can run an email and SMS sequence without a CRM. That said, a CRM helps with tracking deal stages, logging contact history, and suppressing sequences for contacts who've already converted. If you're starting from zero, you can get the sequence running first and add CRM integration later.



      What's the best tool for automated SMS follow-up?
      Twilio is the most reliable and widely used. It's a developer-oriented API rather than a point-and-click tool, but it pairs well with n8n or Make and costs about $0.0079 per message. For most service businesses sending a few hundred texts per month, the total cost is under $10/month. Some CRMs (HubSpot, Jobber) have built-in SMS, but they're more expensive per message and less flexible.
Enter fullscreen mode Exit fullscreen mode

Related Guides

  - [The State of SMB Automation 2026 (Research Report)](/blog/state-of-smb-automation-2026)Synthesis of public industry data on what SMBs automate and what it costs
  - [The Small Business Automation Guide](/blog/small-business-automation-guide)What to automate first, what it costs, and what payback to expect
  - [How Much Does Business Automation Cost?](/blog/how-much-does-automation-cost)Honest 2026 pricing breakdown — DIY tools vs custom builds
  - [AI Agents for Small Business (2026 Guide)](/blog/ai-agents-for-small-business)What they are, what they cost, and when the math works
  - [How to Automate Retainer Agreements](/blog/how-to-automate-retainer-agreements)Proposal → signed contract → recurring billing → renewal
Enter fullscreen mode Exit fullscreen mode


Originally published on Aplos AI.

Want to see what's automatable in your business? Get a free AI readiness audit — no call required, delivered to your inbox in 24 hours.

Top comments (0)