flex pop3 imap 插座
我怎样才能从flex与gmail pop服务器通信 我使用 pop.gmail.com 和端口 =995 使用 Socket() 类,但它返回 220 mx.google.com ESMTP 但我什么也不明白。
how can i communicate gmail pop server from flex
i used pop.gmail.com and port =995 using Socket() class but it returns
220 mx.google.com ESMTP but i dont understand nothing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
“220”是来自 Google 的响应代码,表示已准备好通过 SMTP 进行通信。有多个命令需要来回发送,因此您需要查找有关 SMTP 协议的其他信息才能与 Google 服务器进行通信。
"220" is a response code from Google saying that it is ready to communicate over SMTP. There are several commands to send back and forth so you'll need to find additional information on the SMTP protocol to communicate with Google's servers.
as3 SMTP:http://code.google.com/p/smtpmailer/
我说浏览该项目的源代码以了解该去哪里。
as3 SMTP: http://code.google.com/p/smtpmailer/
i say browse the source of that project to get a good idea of where to go.
我在AS3中为AIR1.5制作了POP3/SMTP库(Airxmail)。
http://code.google.com/p/airxmail/
该网站显示了一个示例连接gmail的代码。
I made POP3/SMTP library(Airxmail) in AS3 for AIR1.5.
http://code.google.com/p/airxmail/
The site shows a sample code to connect gmail.