こんにちは、Cordova EmailComposer プラグインを使用しています。
Cordova.exec(null, null, "EmailComposer", "showEmailComposer", [args]);
私が苦労しているのは、そのような件名と情報の設定です。値を変更するnull
と、プラグインが壊れます。
ありがとう
使用法:
// Define the arguments
var args = {
toRecipients : string,
ccRecipients : string,
bccRecipients : string,
subject : string,
body : string,
bIsHtml : boolean
};
私は次の質問に対する答えを見つけました
window.plugins.emailComposer.showEmailComposer("Subject","PlainTextBody", "recipient,recipient", "ccRecipient", "bccRecipient",false);