An open API service indexing awesome lists of open source software.

https://github.com/javierlecca/masiv-sms

Package to send sms through masiv api client
https://github.com/javierlecca/masiv-sms

library npm-package sms sms-api

Last synced: about 2 months ago
JSON representation

Package to send sms through masiv api client

Awesome Lists containing this project

README

          

# masiv-sms
This packages help to send sms from [masiv](https://masiv.com/)
For install package just run:
```sh
$ npm i masiv-sms
```
Import and using package
```sh
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)
```