使用Facebook API向多个收件人发送邮件

时间:2012-03-30 17:09:04

标签: javascript facebook web dialog send

是否有其他方式将邮件发布给多个收件人。 我们试图整合逻辑,这里描述Facebook send dialog to multiple friends using a recipients arrays 但它现在看起来不起作用。它只允许向ID列表中的第一个收件人发送信息。

感谢您的帮助。

2 个答案:

答案 0 :(得分:5)

我找到了将Facebook消息发送给多个朋友的解决方法。

每个Facebook用户自动获得@ facebook.com电子邮件地址。 地址与公共用户名或公共用户ID相同。

因此,您只需将常规电子邮件发送到此电子邮件地址即可。 邮件将像普通邮件一样显示在Facebook收件箱中。

将连接的用户电子邮件用作发件人非常重要,否则无法使用。

这是一个让所有朋友通过电子邮件发送地址并调用网络服务的示例。

<div id="fb-root"></div>
<script type="text/javascript" src="https://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript">
    FB.init({
        appId: '#APP_ID#',
        status: true,
        cookie: true,
        xfbml: true
    });

    FB.getLoginStatus(function (response) {
        if (response.status === 'connected') {
            GetData();
        } else {
            Login();
        }
    });

    function Login() {
        FB.login(function (response) {
            if (response.authResponse) {
                GetData();
            }
        }, { scope: 'email' });
    }

    function GetData() {
        //Get user data
        FB.api('/me', function (response) {
            //Sender
            var sender = response.email;

            //Get friends
            FB.api('/me/friends', function (response) {

                //Recepients array
                var recipients = [];
                var length = response.data.length;
                var counter = 0;

                //Loop through friends
                for (i = 0; i < length; i++) {
                    var id = response.data[i].id;

                    //Get friend data
                    FB.api('/' + id, function (response) {
                        var recipient = "";

                        //User got a username, take username
                        if (response.username) {
                            recipient = response.username + '@facebook.com';
                        }
                        //No username, take id
                        else {
                            recipient = response.id + '@facebook.com';
                        }

                        //Add e-mail address to array
                        recipients.push(recipient);

                        counter++;
                        //last email -> send
                        if (counter == length) {
                            SendEmail(sender, recipients);
                        }
                    });
                }
            });
        });
    }

    function SendEmail(sender, recipients) {
        //Call webservice to send e-mail e.g.
        $.ajax({ type: 'POST',
            contentType: 'application/json; charset=utf-8',
            dataType: 'json',
            url: '#WEBSERVICE#',
            data: '{ sender:"' + sender + '", recipients: ["' + recipients.join('","') + '"] }',
            success: function (response) {
                //do something
            }
        });
    }
</script>

答案 1 :(得分:1)

Facebook不希望你这样做,所以你必须做一个解决方案......你可以开发一个内置消息系统的应用程序。然后同时向多个收件人发送请求。当用户点击请求时,您的应用应检索并显示该消息。