masiv-sms
v1.0.1
Published
package to send sms through masive api client
Downloads
7
Readme
masiv-sms
This packages help to send sms from masiv For install package just run:
$ npm i masiv-sms
Import and using package
const masivSms = require('masiv-sms');
const username = 'foo';
const password = '********';
const phone = '' // international format;
const message = '';
const longMessage = false; // or a long message
const flash = false;
const premium = false;
masivSms.SendSms(username, password, phone, message, longMessage, flash, premium)