Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在寻找整个网络,但找不到一种方法来格式化从 Google 电子表格应用程序发送的电子邮件。我曾尝试使用内联 html 元素,但 API 正在转义它们并将它们作为电子邮件中的纯文本发送。有谁知道如何格式化文本?
尝试使用以下代码:
... var options = { htmlBody: '<b><i>TEST</i></b>' }; MailApp.sendEmail('someone@domain.ext', 'TEST', 'TEST', options); ...