1.0.2 • Published 4 years ago

nativescript-open-inbox v1.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

NativeScript Open Default Email App Inbox

You can use this plugin to open the default email app on both android and ios.

Installation

Run this command from the root of your project:

tns plugin add nativescript-open-inbox

API

To use this plugin you must first require/import it:

TypeScript

import { openInbox } from "nativescript-open-inbox";
// or
import { openInbox as goToEmailApp } from "nativescript-open-inbox";

JavaScript

var email = require("nativescript-open-inbox");

openInbox

TypeScript

  email.openInbox()
    .then(() => {
        console.log("Cool!");
    })
    .catch((ex) => {
      console.log("Ouch!" + ex);
    });

JavaScript

  email.openInbox()
    .then(() => {
        console.log("Cool!");
    })
    .catch((ex) => {
      console.log("Ouch!" + ex);
    })