我想要并同时在电子邮件中发送正文的txt和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
}
);