1.1.4 • Published 2 years ago

aruba-sms-sender v1.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 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

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago