Search code examples
emailgoogle-apps-scriptgoogle-docs-api

Can I set MailApp.sendEmail text to align to the right with out using htmlbody


I want to get Hebrew text from a google doc and send it by email using google script, can i get the email text to be aligned to the right with out using htmlbody in the mailApp.sendEmail

var doc =DocumentApp.openById("...")
var message = doc.getText();

the text should be sent by mail like so:

 MailApp.sendEmail(emailAddress, subject, message);

can i get the text in the message to be aligned to the right with out using htmlbody?


Solution

  • There's no setting that can be done for the MailApp namespace of AppScript. You can set the text direction using Paragraph, however, it seems to only be for some Google products like Docs (DocumentApp).