An open API service indexing awesome lists of open source software.

https://github.com/dns2utf8/mod-aspsms


https://github.com/dns2utf8/mod-aspsms

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

mod-aspsms
==========

Gateway to SMS-Provider Aspsms for [node](http://nodejs.org).

```js
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/