I am creating an application on the phone with cord and frame 7. I want to write email on an Android phone via Email Composer. I am trying 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 does not return anything. Neither success nor error.
source
share