Я хочу и одновременно в электронном письме текстовую и html версию тела.так что пользователи, которые активировали только txt, все еще могут читать текст.
MailApp.sendEmail("recipient@example.com",
"replies@example.com",
"TPS report status",
"What is the status of those TPS reports?");
GmailApp.sendEmail(
'your@emailaddress.com', // recipient
'test GmailApp', // subject
'test', { // body
htmlBody: html // advanced options
}
);