0.0.4 • Published 8 years ago

cordova-plugin-smsinbox v0.0.4

Weekly downloads
-
License
Apache 2.0
Repository
-
Last release
8 years ago

Cordova SMS Inbox Plugin

Simple plugin that inserts sms to ones own device inbox.

Using

Install the plugin

$ cordova plugin add cordova-plugin-smsinbox

Edit www/js/index.js and add the following code inside onDeviceReady

    var success = function(message) {
        alert(message);
    }

    var failure = function() {
        alert("Error calling Hello Plugin");
    }

    genSMS("8976481012", "any custom message", success, error);