Мое чтение MailApp.sendEmail (получатель, тема, тело, параметры) предполагает, что у вас должен быть этот тип html:
<img src="cid:imagekey1" /><img src="cid:imagekey2" />
для такого рода команды:
MailApp.sendEmail({currentEmail,currentSubject,non Html body (required),(replyTo:reply,htmlBody:"....<img src="cid:imagekey1" /><img src="cid:imagekey2" />...." ,inlineImages: {imagekey1:imgblob1,imagekey2:imgblob2}})
Это единственные дополнительные параметры в документации:
attachments BlobSource[] an array of files to send with the email (see example)
bcc String a comma-separated list of email addresses to BCC
cc String a comma-separated list of email addresses to CC
htmlBody String if set, devices capable of rendering HTML will use it instead of the required body argument; you can add an optional inlineImages field in HTML body if you have inlined images for your email
inlineImages Object a JavaScript object containing a mapping from image key (String) to image data (BlobSource); this assumes that the htmlBody parameter is used and contains references to these images in the format <img src="cid:imageKey" />`
ПРИМЕЧАНИЕ. В нем говорится, что аргумент body
name String the name of the sender of the email (default: the user's name)
noReply Boolean true if the email should be sent from a generic no-reply email address to discourage recipients from responding to emails; this option is only possible for G Suite accounts, not Gmail users
replyTo String an email address to use as the default reply-to address (default: the user's email address)
И я не вижу никакой опции to:
.
Поэтому я считаю, что вам придется программно настроить html с помощью количество изображений, которые вы должны отправить.