简体   繁体   English

G套件商务邮件发送配额

[英]G-suite business mail sending quota

I used the trail version of G-Suite business. 我使用了G-Suite业务的试用版。 I have pasted a script for checking the email quota in google sheet. 我已经粘贴了一个脚本来检查Google表格中的电子邮件配额。 When I run the script, it shows only 100 instead of 500 quota. 当我运行脚本时,它只显示100个配额,而不是500个配额。 I asked google about that and they said it should be 500 but what I got is only 100. How could I know the real number of the quota? 我问谷歌,他们说应该是500,但是我得到的只有100。我怎么知道配额的真实数量?

function checking(){
  var emailQuotaRemaining = MailApp.getRemainingDailyQuota();
  Logger.log("Remaining email quota: " + emailQuotaRemaining);
  MailApp.sendEmail('xxxxxx@xxx.com(my email)',"My Subject", "Raw Log:\n------------------\n" + Logger.getLog());
}

I think this is the expected amount. 我认为这是预期的金额。

getRemainingDailyQuota() : getRemainingDailyQuota()

Returns the number of remaining emails a user can send for the rest of the day. 返回用户一天中剩余时间可以发送的剩余电子邮件数量。 Quotas are based on the number of email recipients. 配额基于电子邮件收件人的数量。

And looking at Apps Script quota , 100/day is allocated for email recipients day. 并查看Apps脚本配额 ,每天为电子邮件收件人分配100个/天。

在此处输入图片说明

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM