简体   繁体   中英

G-suite business mail sending quota

I used the trail version of G-Suite business. I have pasted a script for checking the email quota in google sheet. When I run the script, it shows only 100 instead of 500 quota. 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?

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() :

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.

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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