I am building app on phonegap with cordova and framework7. I want to compose email on android phone through Email Composer. I try to use this plugin.
'com.jcjee.plugins.emailcomposer'
https://github.com/jcjee/email-composer
Here is my code.
window.plugins.emailComposer.showEmailComposerWithCallback(function (callback) {
console.log(JSON.stringify(callback));
}, 'Subject', 'body', ['dummy@gmail.com'], null, null, true, path_to_file);
This return nothing. Neither Success nor error.