如何在 Rails 3 中通过 IMAP 协议接收电子邮件

发布于 2024-09-26 03:31:00 字数 43 浏览 4 评论 0原文

在 Rails 3 中通过 IMAP 协议接收电子邮件的最佳方式是什么?

What is the best way to receive email via IMAP protocol in Rails 3?

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

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

发布评论

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

评论(2

蓝色星空 2024-10-03 03:31:00

我不确定最好的方法,但一个简单的方法是使用 <代码>Net::IMAP。您可以编写一个 rake 任务,并使用诸如 cron 之类的调度程序定期轮询邮箱中的电子邮件。

因此,您的设置如下所示:

  1. 一个库文件,用作 IMAP 客户端和其他相关操作(例如处理电子邮件)的包装器。
  2. rake 任务在被调用时下载电子邮件并使用上面提到的包装器处理它们。
  3. 调度程序(Cron 或您选择的任何其他程序。我个人总是更喜欢 cron),它定期调用此 rake 任务。

I am not sure about best, but a simple way is to use Net::IMAP. You can write a rake task and periodically poll the mailbox for emails by using a scheduler like cron.

So your setup would look like this:

  1. A library file which servers as a wrapper for IMAP client and other related operations, like processing the emails.
  2. The rake task which when called downloads the emails and processes them using the wrapper mentioned above.
  3. The scheduler (Cron or any other of your choice. I personally always prefer cron) which periodically calls this rake task.
行雁书 2024-10-03 03:31:00

根据 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 implement UserMailer.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.

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