使用 Amazon SES 时需要排队吗?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将它们分成 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.