0

こんにちは、Cordova EmailComposer プラグインを使用しています。

Cordova.exec(null, null, "EmailComposer", "showEmailComposer", [args]);

私が苦労しているのは、そのような件名と情報の設定です。値を変更するnullと、プラグインが壊れます。

ありがとう

4

3 に答える 3

0

使用法:

// Define the arguments
var args = {
toRecipients : string,
ccRecipients : string,
bccRecipients : string,
subject : string,
body : string,
bIsHtml : boolean
};
于 2012-10-18T13:52:40.157 に答える
-1

私は次の質問に対する答えを見つけました

window.plugins.emailComposer.showEmailComposer("Subject","PlainTextBody", "recipient,recipient", "ccRecipient", "bccRecipient",false);
于 2012-08-23T15:02:38.607 に答える