nativescript-open-inbox
Open Email inbox plugin for your NativeScript app
npm i --save nativescript-open-inbox
- Version: 1.0.2
- GitHub: https://github.com/franciscojaimesfreyre/nativescript-open-inbox
- NPM: https://www.npmjs.com/package/nativescript-open-inbox
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
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);
})