MailApp not sending with large number of recipients
问题 My code takes an input of emails that looks like this: email1@gmail.com, email2@gmail.com, email3@gmail.com ... and tries to send them an email using the following code. function sendEmail(form) { var ss = SpreadsheetApp.getActive(); var body = form.body; var bcc = form.bccfield; var cc = form.ccfield; var to = form.tofield; var subject = form.subject; var eHandle = ss.getSheetByName("Email Handling"); var sig = eHandle.getRange(10, 2).getValue(); var img = eHandle.getRange(11, 2).getValue();