I signed up for a google suite free trial and chose to make a domain name on the spot upon signing up for the free trial.
The free trial has a 500 emails per day sending limit using app script according to sites as oppose to consumer gmail accounts which can only send 100 emails per day.
What I did is make a simple script just to check if it could send 150 emails to make sure it is still within bound. ex.
myfunction(){
for (var i = 0; i < 150; i++)
GmailApp.sendEmail(//my email, "Iteration", i);
}
But it didn't work and made an error about sending limits. I tried sending 100 emails and it worked. So basically, my sending limit didn't upgrade to 500.
I consulted with the contact support and it told me to "check with the smtp reference of the script."
I didn't do any modifications to the admin settings or anything. I just literally signed up for the gsuite so that I can send more than 100 emails using appscript for small scale business functions.
Unfortunately I didn't know what the google support meant. Can someone give a resolution to this issue? Or enlighten me with what the contact support mean about smtp reference.
MailApp
, maybe that would solve your problem. – Antoine Colson