doutan8506 2019-03-04 22:09
浏览 65
已采纳

多次通过电子邮件发送相同地址时达到“收件人通过电子邮件发送”配额

I have written an application on Google App Engine that sends emails to a single address. The application reached it's "Recipients Emailed" quota limit during testing. Should the same email address be counted more than once for the "Recipients Emailed" quota?

This is the code sending the emails.

import  "google.golang.org/appengine/mail"

-

msg := &mail.Message{
    Sender:   "Order <order@xxxxxxxxxxxx.appspotmail.com>",
    To:       []string{"Ben <xxxxxxxxxxxx@gmail.com>"},
    Subject:  "Order Received",
    HTMLBody: htmlBody,
}
if err := mail.Send(ctx, msg); err != nil {
    log.Errorf(ctx, "Couldn't send email: %v", err)
}

My Quota Usage My Quota Usage

Google's API Quotas Google's API Quotas

  • 写回答

1条回答 默认 最新

  • donglusou3335 2019-03-05 06:12
    关注

    Yes, this is how it's actually counted. The resource naming used is misleading.

    Note that the measurement units in the table are actually messages and mails not recipients/admins.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 线性代数的问题,我真的忘了线代的知识了
  • ¥15 有谁能够把华为matebook e 高通骁龙850刷成安卓系统,或者安装安卓系统
  • ¥188 需要修改一个工具,懂得汇编的人来。
  • ¥15 livecharts wpf piechart 属性
  • ¥20 数学建模,尽量用matlab回答,论文格式
  • ¥15 昨天挂载了一下u盘,然后拔了
  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了