1.1.4 • Published 3 years ago

aruba-sms-sender v1.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

npm-aruba-sms-sender

This package is used as wrapper for aruba SMS API. The implementation is as simple as standing-up and sitting on a chair.

Usage

npm i -S aruba-sms-sender

Example

var sender = require('aruba-sms-sender')

const USER = process.env.ARUBA_SMS_USER;
const PASSWORD = process.env.ARUBA_SMS_PASSWORD;

const recipients = [];

// Alice
recipients.push('+3933456789')
// Bob
recipients.push('3456789')
// Charlie
recipients.push(3456789)

const result = sender.sendSMS(USER, PASSWORD, recipients, 'Hello World', 'CUSTOM SENDER NAME');

console.log(result);
1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago