可以合并“推送电子邮件”进入网络应用程序?
我正在阅读有关 Gmail 中名为
但我想知道是否可以将其合并到网络应用程序中。
例如,假设我允许 Gmail 将电子邮件推送到特定的 HTML 表单,然后让我的网络应用程序处理电子邮件。
这有意义吗?
I was reading about this new feature in Gmail called push email which seems to be designed with smart phones in mind.
But I wonder if it would be possible to incorporate this into a web app.
So for example, let's say I allow Gmail to push email to a particular HTML form and then I have my web app process the emails.
Would that make sense?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我期望的方法是让 IMAP 客户端在您的 Web 服务器上运行,并且您的 Web 应用程序处理传入的邮件。
I'd expect the way to go would to have an IMAP client run on your web server and your web app handle the incoming mail.
是否有 imapidle 或 Push imap 的 ruby 实现?我也看到了 net/imap 的相互矛盾的答案。如果有一个rails gem 实现这个功能那就太好了
is there any ruby implementation for imap idle or the push imap ? i saw conflicting answers for net/imap too. it would be great if there is a rails gem which implements this feature