mod-aspsms

2.0.1 • Public • Published

mod-aspsms

Gateway to SMS-Provider Aspsms for node.

var config = {
  "disable": true, // switch to false to enable the service
  "UserName": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
  "Password": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
  "Originator": "Your Name",
  // Optional:
  "logger": console.log, // if you would like to see debug output
  "URLDeliveryNotification": "https://example.com/success",
  "URLNonDeliveryNotification": "https://example.com/failure"
};
 
const sms = require('mod-aspsms')(config);
 
const msg = 'Test SMS from NodeJs';
 
const addressBook = ['+41798765432'];
 
sms.send(addressBook, msg);

I released this code because I believe everyone should be able to send texts with node.

Additional docs

https://json.aspsms.com/

Package Sidebar

Install

npm i mod-aspsms

Weekly Downloads

5

Version

2.0.1

License

none

Unpacked Size

5.81 kB

Total Files

5

Last publish

Collaborators

  • tuxle