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
- Host: GitHub
- URL: https://github.com/javierlecca/masiv-sms
- Owner: javierlecca
- Created: 2020-03-12T17:04:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-12T21:39:58.000Z (over 6 years ago)
- Last Synced: 2025-10-26T21:20:26.106Z (8 months ago)
- Topics: library, npm-package, sms, sms-api
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```