Suppose I send a verification code on email and I have a button "check mail" On pressing that I want to just open the email app on the phone directly
edit: trying cordova-app-alunch plugin for it, if you have any suggestions
Suppose I send a verification code on email and I have a button "check mail" On pressing that I want to just open the email app on the phone directly
edit: trying cordova-app-alunch plugin for it, if you have any suggestions
you can also open new mail and give pre selected info
let email = {
to: 'max@mustermann.de',
cc: 'erika@mustermann.de',
bcc: ['john@doe.com', 'jane@doe.com'],
attachments: [
'file://img/logo.png',
'res://icon.png',
'base64:icon.png//iVBORw0KGgoAAAANSUhEUg...',
'file://README.pdf'
],
subject: 'Cordova Icons',
body: 'How are you? Nice greetings from Leipzig',
isHtml: true
}
with following you can open and attach the following with one press of a button
// Send a text message using default options
this.emailComposer.open(email);
You can use send mail is an node package.
you can use it, it navigate to Gmail if logged in.
mailto:SomeMail@blabla.example