Formatting the automated email send from google spreadsheet -
i have been looking on web , not find way format email sent google spreadsheet application. have tried using inline html elements, api escaping them , sending them plain text in email. have idea how format text?
try using following code:
... var options = { htmlbody: '<b><i>test</i></b>' }; mailapp.sendemail('someone@domain.ext', 'test', 'test', options); ...