我在这里有这个脚本:
function MainAssistant(argFromPusher) {
}
MainAssistant.prototype = {
setup: function() {
Ares.setupSceneAssistant(this);
},
cleanup: function() {
Ares.cleanupSceneAssistant(this);
},
button6Tap: function(inSender, event) {
},
contactMe: function(inSender, event) {
this.$.launchEmail1.launch();
},
launchEmail1Success: function(inSender, inResponse, inRequest) {
}
};
我在文档中看到您可以使用recipients
,但我不了解如何使用它。我知道它是一辆婴儿车,但我如何使用它。
感谢
答案 0 :(得分:1)
您可以在webOS开发者论坛上找到一些提示here。
基本上:
this.$.launchEmail1.setRecipients({
type:"email",
role:1,
value:"address@email.com",
contactDisplay:"Your name"
});
this.$.launchEmail1.setSubject("I have a question!");