How to bold specific text using Google Apps Script?

前端 未结 3 1068
小蘑菇
小蘑菇 2020-12-16 07:17

I use Google Spreadsheets\' built-in form functionality to build contact forms on my website.

Now, consider this code:

function sendFormByEmail(e)
{
         


        
3条回答
  •  攒了一身酷
    2020-12-16 07:46

    A simple way that worked for me.

     function inlineImage() { 
       MailApp.sendEmail({
         to: "Your@email.com",
         subject: "Subject",
         htmlBody: ' Google ' ,
    
       });
     }
    

提交回复
热议问题