Phonegap - How to emailComposer to compose email?

百般思念 提交于 2019-12-11 04:57:31

问题


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.

来源:https://stackoverflow.com/questions/41871983/phonegap-how-to-emailcomposer-to-compose-email

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!