2.0.1 • Published 5 years ago

mod-aspsms v2.0.1

Weekly downloads
15
License
-
Repository
github
Last release
5 years ago

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/