我尝试使用电子邮件插件cordova。我按照https://github.com/katzer/cordova-plugin-email-composer
上的文档进行操作我创建了一个像这样的js:
openDraft = function (isHtml) {
if (isHtml && ['Win32NT', 'windows'].indexOf(device.platform) > -1) {
alert('Not supported on that platform!');
return;
}
cordova.plugins.email.open({
to: 'to@email.de',
cc: ['cc1@email.de', 'cc2@email.de'],
bcc: ['bcc1@email.de', 'bcc2@email.de'],
subject: isHtml ? 'Body with HTML and CSS3' : 'Body with plain text',
body: getBody(isHtml),
isHTML: isHtml
}, showToast);
};
我添加了config.xml:
我写邮件.html:
<input type="button" onclick="openDraft.open();" value="Send mail" />
我加入了我的剧本。
但没有任何显示。
感谢