在 Heroku Sendgrid 中,有没有办法查看我的应用程序今天发送了多少封电子邮件?

发布于 2024-12-01 22:48:11 字数 136 浏览 0 评论 0原文

我有一个在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 技术交流群。

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

发布评论

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

评论(3

别在捏我脸啦 2024-12-08 22:48:11

查看 SendGrid API..

REST GET 请求:

https://sendgrid.com/apiv2/reseller.account.json?api_user=username&api_key=secureSecret&task=overview&[email protected]

来源:AccountOverview API

将返回类似以下内容:

<前><代码><结果>;
<概述>
<声望>100
<请求>50000银色套餐50000
100000
0
50000
2010-08-30
2010-09-29
2010-09-30

(由于链接了错误的 API 页面而进行了编辑)。

Look at the SendGrid API..

REST GET request to:

https://sendgrid.com/apiv2/reseller.account.json?api_user=username&api_key=secureSecret&task=overview&[email protected]

Source: AccountOverview API

Will return something like:

<result>
  <overview>
    <reputation>100</reputation>
      <requests>50000</requests>
      <package>Silver Package</package>
      <credits_allowed>50000</credits_allowed>
      <credits_used>100000</credits_used>
      <credits_remain>0</credits_remain>
      <credits_overage>50000</credits_overage>
      <billing_start_date>2010-08-30</billing_start_date>
      <billing_end_date>2010-09-29</billing_end_date>
      <billing_process_date>2010-09-30</billing_process_date>
    </overview>
</result>

(Edited due to linking the wrong API page).

往事风中埋 2024-12-08 22:48:11

我发现最简单的方法是在 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.

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