Using LowSMS
This section shows you how to build your own SMS sending app/service
Enabling all sms products
function openBuilder(){
const lamba = new Lamba({
title: "Lamba",
icon: 'https://ik.imagekit.io/lambahq/lamba-dark.png',
theme: "light",
appId: "65aabeba6182d6903a2ea355",
customerId: "cus_x1847",
enabledServices: ["low_sms"], // enables all the sms products in the `low_sms` service
usageCapabilities: ['connect','use'],
});
// call the `open` method on the lamba instance to open up the Lamba interface
lamba.open();
}
Enabling specific sms products
function openBuilder(){
const lamba = new Lamba({
title: "Lamba",
icon: 'https://ik.imagekit.io/lambahq/lamba-dark.png',
theme: "light",
appId: "65aabeba6182d6903a2ea355",
customerId: "cus_x1847",
enabledServices: {low_sms: ["twilio","infobip"]}, // enables only "twilio" and "infobip"
usageCapabilities: ['connect','use'],
});
// call the `open` method on the lamba instance to open up the Lamba interface
lamba.open();
}
When run, this would open up the Lamba UI with the sms product for the user to choose from, connect, and then use after connection.
Things you can build with the SMS service on Lamba JS library and the API:
SMS Notifications for Transactions:
Example: Implement SMS alerts for successful transactions, such as online purchases or bank transfers, providing customers with instant updates on their financial activities.
Appointment Reminders via SMS:
Example: Develop a system for sending automated SMS reminders for appointments or reservations, ideal for medical clinics, restaurants, or service-based businesses.
Marketing and Promotional Messages:
Example: Use SMS for sending promotional offers, discounts, or announcements about new products or services, targeting customers directly on their mobile devices.
Two-Factor Authentication (2FA) System:
Example: Enhance security by integrating a 2FA system that sends a one-time password (OTP) via SMS to users during login or transaction processes.
Automated Customer Feedback Collection:
Example: After a purchase or service, send a follow-up SMS to customers inviting them to provide feedback or rate their experience, helping to gather valuable customer insights.
Last updated
Was this helpful?