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.