cordova-plugin-cdvsms
v0.0.18
Published
Cordova Plugin for sending SMS messages
Downloads
20
Maintainers
Readme
A Cordova Plugin for sending SMS messages
Quickly send SMS messages.
Installation
$ cordova plugin add cordova-plugin-cdvsms
Example
cordova.plugins.cdvsms.send(
{
to: '+1234567890',
message: 'This is a test SMS',
success: function(response){},
error: function(e){}
}
);
Format of the response
:
{
"status": -1,
"message": "RESULT_OK"
}