在 Heroku Sendgrid 中,有没有办法查看我的应用程序今天发送了多少封电子邮件?
我有一个在heroku 中托管的Rails 3.0.5 应用程序。我使用 Sendgrid 来发送电子邮件。我使用的是免费计划,但每天有 200 封电子邮件的限制。我想知道 Rails 或这个插件“Sendgrid”中是否有办法查看今天发送了多少封电子邮件。
I have a Rails 3.0.5 app hosted in heroku. To send emails I use Sendgrid. Im in the free plan but it has a 200 email daily limit. I want to know if there is a way in Rails or in this addon "Sendgrid", to see how many emails have been sent today.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 Heroku Sendgrid Stats 插件
Use the Heroku Sendgrid Stats plugin
查看 SendGrid API..
REST GET 请求:
来源:AccountOverview API
将返回类似以下内容:
(由于链接了错误的 API 页面而进行了编辑)。
Look at the SendGrid API..
REST GET request to:
Source: AccountOverview API
Will return something like:
(Edited due to linking the wrong API page).
我发现最简单的方法是在 Heroku 上的应用程序中单击 SendGrid 插件。主屏幕将告诉您今天发送了多少封电子邮件。如果您单击“电子邮件活动”选项卡,您可以看到已发送的所有电子邮件。
The easiest way I found was to click on the SendGrid add-on in your app on Heroku. The main screen will tell you how many emails were sent today. If you click on the "Email Activity" tab you can see all of the emails that were sent.