我可以将 MailApp.sendEmail 文本设置为右对齐而不使用 htmlbody

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

我想从 google 文档中获取希伯来语文本,并使用 google 脚本通过电子邮件发送,我可以在不使用 [=13 的情况下使电子邮件文本右对齐吗=] 在 mailApp.sendEmail

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

文本应像这样通过邮件发送:

 MailApp.sendEmail(emailAddress, subject, message);

我可以在不使用 htmlbody 的情况下使消息中的文本右对齐吗?

没有可以为 AppScript 的 MailApp 命名空间进行的设置。您可以使用 Paragraph 设置文本方向,但是,它似乎只适用于某些 Google 产品,例如 Docs (DocumentApp)。