Module 3: Lead Handling · 20 min

Follow-Up Sequences for Leads That Go Quiet

// sabak

Turn this lesson into one checked practice output

By the end, you should be able to explain the core idea behind “Follow-Up Sequences for Leads That Go Quiet” in your own words, apply it to one small real or sample task, and identify what still needs human review.

  1. 1

    Learn

    Read the 20-minute lesson without copying an output blindly.

  2. 2

    Try

    Use a small, non-sensitive example that you can inspect line by line.

  3. 3

    Review

    Check facts, fit, and risk; save one improvement note for next time.

Follow-up should help a consenting customer finish a task, not chase silence indefinitely. The sequence must distinguish service communication from marketing, respect the 24-hour customer-service window, use approved templates when required, and stop on opt-out, resolution, or suppression events.

After this lesson, you can write a state-based follow-up policy with entry, exit, timing, consent, and measurement rules.

Define Why the Message Is Necessary

Classify the case:

  • service completion: missing address, appointment confirmation, requested quote;
  • transaction update: order, delivery, payment status from an authoritative system;
  • marketing: offer, recommendation, re-engagement, or promotion;
  • human support: a promised answer or open complaint.

Do not relabel marketing as an order update. Verify the current template category and approval rules before launch.

Build State-Based Entry and Exit

Example sequence for a customer-requested quotation:

Entry: quote prepared and customer requested it
Message 1: send during service window; include scope, amount, validity, HUMAN/STOP
Message 2: if no response and outside window, use appropriate approved template
Exit: accepted, declined, expired, opt-out, complaint, invalid number, or agent closes
Maximum: two follow-ups unless customer replies

The maximum is a business choice, not a universal benchmark. Start conservatively and monitor blocks, complaints, opt-outs, and negative replies.

Use suppression before send:

if opted_out or case_closed or complaint_open or invalid_number: DO_NOT_SEND
if outside_service_window and no_approved_template: DO_NOT_SEND
if purpose_not_covered_by_consent: DO_NOT_SEND

Write Useful Messages

Each follow-up should add value: a missing fact, expiry date, edit option, or clear close. Avoid guilt and false urgency.

Your requested quote Q-24071 is ready: PKR 32,000 plus the listed delivery charge.
It is valid through 18 August, subject to stock confirmation.
Reply ACCEPT, QUESTION, or CLOSE. Reply STOP to end these messages.

If the customer says “not interested,” close the lead and preserve the marketing suppression state. Do not make them repeat STOP.

Worked Example

A Karachi design studio sends a proposal after a discovery call. The client explicitly requested the proposal; marketing permission is false. The first service message shares the proposal reference and asks whether the client wants a question answered. If there is no response, one approved follow-up is scheduled outside the service window. The workflow exits on reply, decline, expiry, opt-out, or bounced/invalid delivery.

The studio reports: eligible cases, messages attempted, delivered where available, replies, accepted proposals, declines, opt-outs, and complaints. It does not calculate “conversion” using all contacts ever imported. A control sample or historical comparison is clearly labelled as observational, not causal proof.

Failure Cases to Diagnose

  • Timer sends after the lead already bought: check authoritative state immediately before send.
  • Marketing template used without valid opt-in: suppress and repair consent capture.
  • STOP merely adds a tag but campaign still sends: make suppression authoritative across tools.
  • Every reminder repeats the same text: add a decision or close the sequence.
  • Agent manually bypasses the sequence: enforce the same consent and window controls.
  • Timezone ignored: schedule in the recipient’s reasonable local time where known.
  • Complaints receive promotions: prioritize and isolate complaint resolution.

🇵🇰 Pakistan Angle

Do not assume all customers want late-night messages because WhatsApp is asynchronous. Use reasonable local hours in PKT and allow the customer to choose a callback window. During Eid or public holidays, update service expectations rather than letting stale automations promise normal response.

For COD, a confirmation reminder can reduce avoidable dispatches, but it should state item, total, delivery location summary, and cancellation path. Never shame a customer for cancelling. Record repeated operational failures separately from marketing eligibility; denying service or profiling people requires legal and policy review.

Hands-On Exercise

  1. Choose one follow-up purpose and classify it.
  2. Define entry, maximum messages, spacing, and every exit state.
  3. Write the pre-send suppression logic.
  4. Draft two messages with truth, value, and easy closure.
  5. Test purchase-before-send, opt-out, expired window, complaint, and invalid-number cases.

Done means: the sequence cannot contact an ineligible person and stops immediately when the task closes or permission ends.

Completion Rubric

  • Service and marketing purposes are not conflated.
  • Entry and exit states come from authoritative records.
  • Window/template rules are enforced before send.
  • Opt-out suppression works across all tools.
  • Messages add a decision or useful fact.
  • Negative feedback is measured alongside outcomes.

Sources

Key takeaway: follow up only for a defined, permitted purpose, re-check state before every send, and stop when the customer, case, or consent says stop.

Self-check

Before you mark Lesson 3.3 complete

  • Can I explain “Follow-Up Sequences for Leads That Go Quiet” without reading the lesson back word for word?
  • Did I complete the lesson’s practice step on a real or clearly labelled sample task?
  • Did I check the result for invented facts, private data, unsafe actions, and mismatch with the brief?