How to Send SMS Automatically with n8n and Twilio (Step-by-Step Tutorial)
Want to send SMS alerts automatically from your system? With n8n and Twilio, you can build powerful SMS automation workflows without complex coding.
This tutorial will show you how to send SMS messages using n8n + Twilio — perfect for alerts, OTPs, notifications, and customer communication.
๐ What You Will Learn
- Connect Twilio to n8n
- Send SMS automatically
- Use webhook triggers
- Build real-world notification systems
๐ฒ Step 1: Create Twilio Account
1. Go to Twilio.com and sign up
2. Get your:
- Account SID
- Auth Token
- Twilio Phone Number
⚙️ Step 2: Create Workflow in n8n
Create a new workflow:
- Webhook Node (Trigger)
- Twilio Node (Send SMS)
๐ Step 3: Add Webhook Trigger
- Set method to POST
- Copy webhook URL
This allows your system (website, app, API) to trigger SMS.
๐ฉ Step 4: Configure Twilio Node
- Operation: Send Message
- From: Your Twilio number
- To: {{$json["phone"]}}
Message example:
Hello {{$json["name"]}},
Your request has been received.
We will contact you shortly.
- Your Company
๐งช Step 5: Test the Workflow
Send test data:
POST /your-webhook-url
{
"name": "Pedro",
"phone": "+639XXXXXXXXX"
}
Once triggered, Twilio will send the SMS instantly.
๐ฅ Real-World Use Cases
- ๐ฉ Lead notifications
- ๐ OTP verification
- ๐ฆ Order updates
- ๐จ Emergency alerts
⚡ Pro Tips
- Format PH numbers → +63 (remove leading 0)
- Add IF node for validation
- Combine with Gmail / Slack for multi-channel alerts
- Log SMS in Google Sheets or Supabase
๐ SEO Keywords
n8n twilio tutorial, sms automation, twilio api sms, webhook sms automation, no code sms system
๐ก Tools Used in This Tutorial
Disclosure: This post contains affiliate links. I may earn a commission at no extra cost to you.
๐ฏ Conclusion
n8n and Twilio give you a powerful way to automate SMS communication for your business.
You can start simple and scale into full automation systems including AI, CRM, and multi-channel messaging.
๐ Want a Custom SMS Automation System?
I build SMS, WhatsApp, Voice AI, and workflow automation systems using n8n and Twilio.
๐ Contact me for a custom setup for your business.
๐ Start building your SMS automation today!





