I tried to autosend mass emails from google script editor, using a list of email addresses on google sheet. I followed this tutorial.
I used my other gmail address as a test and succeeded in receiving the email, but I found that some longer sentences are broken into several lines that are not compatible with the browser size. I have tried the GmailApp.sendEmail method instead of the MailApp.sendEmail one, but the sentences are just broken in slight different ways.. However, the email format seems current when I sent it to my sender address..
Does anyone know how to send a complete normal long email? Many thanks!
var emailTemplate = 'Hi $("First Name")\n\nThanks you!';
– Urvah ShabbirGmailApp.sendEmail
? Because I have used it myself and the format of the mail sent looks appropriate to me. – ale13