我需要在我的应用程序上添加一个按钮,向我的 gmail发送建议邮件。
我尝试了一些方法,但都没有奏效。
我正在尝试,像这样:
<section data-role="page" id="home">
<article data-role="content" style="position: fixed;text-align: center;width: 100%;height: 100%;margin:0;padding:0;overflow: hidden;" >
<!--<a id="go" href="#view-feed-custom"> <img style="max-width: 100%;" src="img/portada.jpg" alt="Logo"> </a>-->
<script>
var args = {
subject: 'Hi there',
body: 'message to suggest you',
toRecipients: 'reciver@gmail.com'
};
cordova.exec(null, null, "EmailComposer", "showEmailComposer", [args]);
</script>
<a href="#" onclick="cordova.exec(null, null, "EmailComposer", "showEmailComposer", [args]);">Enviar Sugerencia 2</a>
</article>
</section>