Text customers back automatically when you miss their call
You're under a sink, on a roof, or driving — the phone rings and you can't get it. The old advice is "they'll leave a voicemail." They won't. They'll call the next company on Google. This catches that customer in the first few seconds with an automatic text so they know you saw it, using Make.com and Twilio.
Be honest with yourself first: what this takes
This is not a 5-minute template like the notifier ones. The Make.com side is ~15–20 minutes, but Twilio needs setup:
- A Twilio account and a phone number (a few dollars a month).
- To send SMS reliably in the US, Twilio requires a one-time Toll-Free Verification (simpler than 10DLC — no brand/campaign registration). It typically takes a few business days. Your missed calls still come in during that wait, you just don't have the auto-text live yet.
- Total Twilio cost is usually $0–20 one-time for a toll-free number plus verification, then a fraction of a cent per text.
If that's fine — most people set it up once and forget it — here's the shape of it.
How it works
- Your Twilio number forwards incoming calls to your real phone.
- If you don't pick up (busy, no answer, voicemail), Twilio calls a Make.com webhook to say the call was missed.
- Make.com sends the caller a text: "Sorry we missed your call! What can we help you with?"
- Make.com also sends you a Telegram alert with the caller's number so you can call back when you're free.
Setup outline
- Twilio number. Sign up at twilio.com, buy a toll-free number, submit it for Toll-Free Verification (Console → Messaging → Toll-Free Verification).
- Call forwarding with a fallback. In the number's Voice settings, forward
calls to your real phone with a timeout; on no-answer / busy, point the fallback at a Make.com
webhook (a TwiML Bin or Function passes the caller's number as
From). - Make.com scenario. Webhook (receives the missed-call event) → Twilio → Send an SMS (to the caller's number, from your Twilio number, with your text) → Telegram → Send a Text Message (to you, with the caller's number).
- Test by calling your Twilio number from another phone and not answering.
Common snags
- Texts don't send before verification clears. Expected — Twilio blocks unverified toll-free SMS to US numbers. Wait for the approval email.
- The fallback never fires. Your forwarding timeout is longer than the caller's patience, or "no answer" isn't wired to the fallback URL. Recheck the Voice config.
- Caller number is missing in Make. Your TwiML isn't passing
Fromthrough to the webhook — add it explicitly.
The Make.com scenario is pre-built (webhook → Twilio SMS → Telegram). The purchase includes the step-by-step Twilio side — the part that's fiddly to get right the first time. ← All AutomateFlow templates