In ioS, it doesn't ask options of mail app

109 views Asked by At

I have installed Cordova email composer plugin using

 cordova plugin add https://github.com/katzer/cordova-plugin-email-composer.git

I have wrote code for sending email below code snippet

 cordova.plugins.email.open({
    subject:     'Report',
    attachments: [pdfPath]
}); 

When I call above function it only opens default email app doesn't ask for mail app options, this happens only in ios. How can resolve this issue.

1

There are 1 answers

7
Vishal Sharma On

You can try this :

In .JS file :

var aAnchorMail = document.createElement("a");
aAnchorMail.href = "mailto:" + "[email protected]";
aAnchorMail.target = "_top";

Or via HTML :

<a href="mailto:[email protected]">Link text</a>