cordova.plugins.email.open({
subject: 'Credentials for Joe Lally',
body: emailbody,
isHtml: true
// attachments: cordova.file.externalRootDirectory +
localStorage.getItem("uuid") + ".txt"
},callback,scope);
function callback(result)
{
alert(result);
}
function scope(result)
{
alert(result)
}
}
我想如何检查电子邮件是否已使用cordova发送,我在回调函数中使用但每次都返回okay.Can任何人帮我检查状态。