facebook SMTP 服务器和端口是什么?

发布于 2024-12-01 00:05:01 字数 239 浏览 4 评论 0原文

我想知道 facebook SMTP 服务器和端口。在邮政局长那里,看到的只是出库。

http://postmaster.facebook.com/outbound

我尝试使用 SMTP.facebook.com,但没有根本不起作用。如果您了解 facebook smtp 和端口,请告诉我。

I would like to know facebook SMTP server and port. In postmaster, what see is only outbond.

http://postmaster.facebook.com/outbound

I tried with SMTP.facebook.com, it doesn't work at all. please let me know if you know about facebook smtp and port.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

蘑菇王子 2024-12-08 00:05:01

smtpout.mx.facebook.com 端口 25

您可以使用标头进行检查:

已接收:来自 127.0.0.1 (EHLO smtpout.mx.facebook.com) (66.220.157.69)
通过 mta1019.mail.mud.yahoo.com 使用 SMTP 发送; 2011 年 8 月 24 日星期三 09:41:46 -0700

smtpout.mx.facebook.com Port 25

You can check using headers:

Received: from 127.0.0.1 (EHLO smtpout.mx.facebook.com) (66.220.157.69)
by mta1019.mail.mud.yahoo.com with SMTP; Wed, 24 Aug 2011 09:41:46 -0700

不喜欢何必死缠烂打 2024-12-08 00:05:01

您想以 Facebook 的形式发送电子邮件吗?我相信这只能通过 api 实现,它将为您发送电子邮件。

http://developers.facebook.com/docs/reference/rest/notifications。发送电子邮件/

Do you want to send email as facebook? I believe this is only possible through the api, which will send the email for you.

http://developers.facebook.com/docs/reference/rest/notifications.sendEmail/

我们的影子 2024-12-08 00:05:01

公司允许注册用户以外的第三方使用其 SMTP 服务器的情况非常罕见(通常是意外)。

如果您的目标是向用户发送电子邮件,则最好的选择是在用户登录时请求用户的“电子邮件”权限。使用 Javascript SDK,这将是:

FB.login(function(response) {
   // callback function body here
}, {scope: 'email'});

然后您应该能够看到用户的电子邮件 字段进行 Graph API 调用时,可以使用您自己的邮件程序发送给他们。

It's very rare (and usually an accident) for a company to allow third parties besides registered users to use its SMTP server.

If your goal is to send email to users, your best option is requesting the "email" permission from users when they log in. Using the Javascript SDK this would be:

FB.login(function(response) {
   // callback function body here
}, {scope: 'email'});

You should then be able to see the user's email field when making a Graph API call, and can use your own mailer to send to them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文