如何设置发邮件给谁?

发布于 2024-12-16 20:36:06 字数 555 浏览 1 评论 0原文

我这里有这个脚本:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离鸿 2024-12-23 20:36:06

您可以在此处在 webOS 开发人员处找到一些提示论坛。

基本上:

this.$.launchEmail1.setRecipients({
              type:"email",
              role:1,
              value:"[email protected]",
              contactDisplay:"Your name"
          });
this.$.launchEmail1.setSubject("I have a question!");

You'll find some hints here at the webOS developer forum.

Basically:

this.$.launchEmail1.setRecipients({
              type:"email",
              role:1,
              value:"[email protected]",
              contactDisplay:"Your name"
          });
this.$.launchEmail1.setSubject("I have a question!");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文