cordova-plugin-sms-sender
v1.0.0
Published
Cordova Plugin To Send SMS (iOS/Android)
Downloads
2
Maintainers
Readme
Supported Platform
iOS/Android
Installation
cordova plugin add https://github.com/six519/cordova-plugin-sms-sender.git
Usage
::
//send sms
window.sMSSenderPlugin.sendMessage('<MOBILE_NUMBER>', '<MESSAGE>', function(e){
//success callback
}, function(e){
//error callback
alert('The error is: ' + e);
});