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。有人可以帮助我检查状态。
最佳答案
您无法使用此插件进行检查。参见@PKnittel的answer
关于javascript - 如何检查是否已发送电子邮件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46289052/