我正在编写一个应用程序,只需发送一封电子邮件,并且遇到最基本功能的问题,应该只打开一封空白电子邮件。我已经使用了插件https://github.com/katzer/cordova-plugin-email-composer#examples,但我似乎正在制造一个必须是一个微不足道的错误,因为它似乎很直接。请告知问题可能是什么。这是HTML代码:
<body>
<h1>Email Sender</h1>
<div id="userInteract">
Message: <input type="text" id="userMsg"></input>
<button onclick="send()">Send</button>
</div>
<script>
function send(){
cordova.plugins.email.open();
}
</script>
</body>