使用 Amazon SES 时需要排队吗?

发布于 2024-11-29 12:09:46 字数 178 浏览 4 评论 0原文

我在 Rails 中基于 Amazon SES 服务和操作邮件程序实现了一个小型批量邮件发送工具。我读到亚马逊在发送消息之前先对我发送的消息进行排队。

所以我的问题是:这是否意味着我不需要自己实施消息队列(例如每 5 分钟 50 封邮件)来防止列入黑名单,亚马逊是否可以为我完成这项工作,而我只需将 5000 封邮件传输给它?

i implement a small bulk-mail sending tool in rails based on the Amazon SES service and action mailer. i read that amazon queues my sent messages before sending them out itself.

so my question: does that mean i don't need to implement a message-queue myself (e.g. 50 mails per 5 minutes) against blacklisting and does amazon that job for me and i just transfer 5000 mails to it?

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

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

发布评论

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

评论(1

童话里做英雄 2024-12-06 12:09:46

您需要将它们分成 50 组(请参阅 http://docs.amazonwebservices 处的文档注释)。 com/ses/latest/DeveloperGuide/)首先。另请参阅该页面上的“管理您的发送活动”(它是 ajax 驱动的,因此没有其他 URL)。我将使用延迟作业作为队列: http://railscasts.com/episodes/171-delayed-工作。

You need to divide them into groups of 50 (see documentation Note at http://docs.amazonwebservices.com/ses/latest/DeveloperGuide/) first. Also see "Managing your Sending Activity" on that page (it's ajax-driven, so there's no other URL). I would use Delayed Job for the queue: http://railscasts.com/episodes/171-delayed-job.

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