How to send HTML email in Google Apps Script
You can send HTML email from Google Apps Script. For example, suppose you want to send emails from your Google Sheet when certain events occur. You can send email using MailApp.sendEmail() function like this: MailApp.sendEmail({ to: email, subject: “This is a test email”, htmlBody: message }); where the message is a string with HTML content. […]
Continue reading