itexmo
v1.1.3
Published
an sms service
Downloads
4
Readme
ITEXMO
The ITEXMO library exported as Node.js modules.
Installation
Using npm:
$ npm i --save itexmo
In Node.js:
// add another config:
// parameters: priority String, senderID String and server String
const itexmo = require('itexmo')({ apiCode: 'YOUR_API_CODE' })
itexmo
.send({ to: '+63xxxxxxxxx', body: 'hello world' })
.then(message => console.log(message))
See the package source for more details.