Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

cordova.plugin.smsinbox

jabirabbas10Apache 2.00.0.5

Cordova Sms Inbox Plugin

cordova, sms, inbox, fake sms, ecosystem:cordova, cordova-android

readme

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);