如何设置发邮件给谁?
我这里有这个脚本:
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
,但我不明白如何使用它。我知道它是婴儿车,但我该如何使用它? 谢谢
I have this script here:
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) {
}
};
I see in the documents you can use recipients
but i don't understand how to use it. I know its a pram, but how do i use it.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在此处在 webOS 开发人员处找到一些提示论坛。
基本上:
You'll find some hints here at the webOS developer forum.
Basically: