cordova-plugin-smsinbox

Cordova Sms Inbox Plugin

Usage no npm install needed!

<script type="module">
  import cordovaPluginSmsinbox from 'https://cdn.skypack.dev/cordova-plugin-smsinbox';
</script>

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