facebook SMTP 服务器和端口是什么?
我想知道 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 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
更多
发布评论
评论(3)
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
您想以 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/
公司允许注册用户以外的第三方使用其 SMTP 服务器的情况非常罕见(通常是意外)。
如果您的目标是向用户发送电子邮件,则最好的选择是在用户登录时请求用户的“电子邮件”权限。使用 Javascript SDK,这将是:
然后您应该能够看到用户的
电子邮件 字段进行 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:
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.