如何在 Rails 3 中通过 IMAP 协议接收电子邮件
在 Rails 3 中通过 IMAP 协议接收电子邮件的最佳方式是什么?
What is the best way to receive email via IMAP protocol in Rails 3?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 Rails 3 中通过 IMAP 协议接收电子邮件的最佳方式是什么?
What is the best way to receive email via IMAP protocol in Rails 3?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我不确定最好的方法,但一个简单的方法是使用 <代码>Net::IMAP。您可以编写一个 rake 任务,并使用诸如 cron 之类的调度程序定期轮询邮箱中的电子邮件。
因此,您的设置如下所示:
cron
),它定期调用此rake
任务。I am not sure about best, but a simple way is to use
Net::IMAP
. You can write arake
task and periodically poll the mailbox for emails by using a scheduler likecron
.So your setup would look like this:
IMAP
client and other related operations, like processing the emails.rake
task which when called downloads the emails and processes them using the wrapper mentioned above.cron
) which periodically calls thisrake
task.根据
ActionMailer
的文档,解决方案是将电子邮件转发到您的 Rails 应用程序并实现UserMailer.receive(STDIN.read)
来处理电子邮件。文档(Action Mailer 基础知识)对于这种方法听起来不太有说服力。它没有告诉应该在哪里实施呼叫,但我猜那将是在 MTA 级别。
As per
ActionMailer
's documentation the solution is to have the email forwarded to your rails application and implementUserMailer.receive(STDIN.read)
to process the email.The documentation (Action Mailer Basics) doesn't sound very convincing about this approach. It's not telling where the call should be implemented but I guess that would be at the MTA level.