铁轨 + Google Apps - 电子邮件发送限制问题
目前,为了发送 Rails 电子邮件,我们使用 google apps 来发送电子邮件,但每个帐户/天的电子邮件数量限制为 500 封。
我想知道是否有任何方法可以跟踪我们发送的电子邮件数量,然后根据需要切换帐户 - 例如,如果我们当天的电子邮件数量低于 500 封,则使用帐户 1,如果我们已达到 500 封,使用帐户 2,如果我们打到 999,则使用帐户 3 等。
这可能吗?如果有一个很棒的插件,如果没有,我该怎么做呢?
谢谢!
Currently for sending rails emails we use google apps for our emails, but we're limited to 500 emails/account/day.
I was wondering if there's any way to track how many emails we're sending, and then switch accounts if needed - as in, if we're under 500 emails for the day, use account 1, and if we've hit 500, use account 2, If we hit 999, use account 3 etc.
Is this possible? If there's a plugin that's awesome, if not, how would I go about doing this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过创建代理类轻松完成此解决方案。
该类将负责获取电子邮件传送请求、记录该请求并将其转发给适当的邮件程序。
这是一个非常简单的原型,假设您使用的是 Rails 2。
尽管上面的解决方案可能有效,但我强烈建议您使用适当的服务来发送电子邮件,该服务能够处理您的日常费率,而不是尝试创建复杂的解决方法。
You can easily accomplish this solution by creating a proxy class.
The class will be responsible for getting the email delivery request, log the request and forward it to the appropriate Mailer.
This is a very simple prototype, assuming you are using Rails 2.
Despite the solution above might work, I strongly encourage you to use an appropriate service for sending emails which is able to handle your daily rate instead of trying to create complex workarounds.