textlocal-new
v1.2.2
Published
Textlocal sms api integration for node.js
Downloads
26
Maintainers
Readme
textlocal-new
TextLocal SMS api integration in node.js.
Updated textlocal client for nodejs. Further updates will be coming soon.
Installation Details
$ npm i textlocal-new
Usage
These functions are straight forward and dont return any promise.
Send an SMS to single contact
const { sendSms } = require("textlocal-new");
sendSms(apiKey, numbers, senderId, message);
Example
sendSms(
"yourApiKey",
"number(s)",
"your DLT registered sender/Entity Id",
"your message"
);