/globelabs-sms

Simple wrapper for globelabs sms api

Primary LanguageJavaScript

globelabs-sms Build Status

NPM

Simple wrapper for globelabs SMS api

Installation

npm install globelabs-sms

Setup

var SMS = require('globelabs-sms');
//sending sms
var sms = SMS({senderAddress: '1234', token: 'SuCbrxI6n75bFko5ajI_lx5EK2ticlOS1VAI8fgaAy4'});
sms.send({address: '91592341234',message: 'hello from npm'}, function(err, response) {
  console.log(response);
});

see: globelabs-api for sms docs