Text Marketing
Reach customers where they actually read
98% open rates. 45% response rates. SMS is the highest-converting channel — and with Textmodo, it takes minutes to set up.
Built for every campaign type
01
Promotional campaigns
Discounts, flash sales, new product launches — reach your list instantly.
02
Abandoned cart recovery
Trigger automated SMS when a customer leaves without checking out.
03
Loyalty & VIP programs
Reward your best customers with exclusive SMS-only offers.
04
Back-in-stock alerts
Notify subscribers the moment their favourite item is available.
Powerful features, simple API
Message scheduling
Schedule messages for the optimal send time.
Link shortening & tracking
Shorten URLs and track every click in real time.
Campaign analytics
Delivery, open, and conversion rates at a glance.
Compliance toolkit
AI-powered compliance checks before every send.
Webhook delivery
Real-time status updates pushed to your endpoint.
Global reach
180+ countries, automatic carrier optimisation.
send-message.js
const textmodo = require("textmodo");
const client = new textmodo.Client("YOUR_API_KEY");
// Send a marketing message
const message = await client.messages.create({
to: "+15551234567",
body: "Hi {{name}}! Flash sale 30% off today only. Shop: {{link}}",
from: "MyBrand",
variables: {
name: "Sarah",
link: "https://shop.example.com/sale"
}
});
console.log(message.sid); // msg_01j...