/way2sms_nodejs

Primary LanguageJavaScriptGNU General Public License v3.0GPL-3.0

Way2sms Nodejs

Internal Functions

auth = way2smsAuth(<userid>,<password>)
//this returns the Auth Token

sendsms(auth,<to_number>,<message>);
//this is used to send the message

Use with Promise

way2smsAuth(<userid>,<password>).then(auth => {sendsms(auth,<to_number>,<message>);});