Send email from Google Spreadsheet omitting the commas

后端 未结 2 1963
逝去的感伤
逝去的感伤 2021-01-27 07:35

All,

I use a similar script to the below to send emails from a google spreadsheet:

// Sends an email when .......
function emailInfoRequired(row) { 
  va         


        
2条回答
  •  深忆病人
    2021-01-27 08:07

    You could even make it more elegant by using a html table like this :

    // Sends an email when .......
    function emailInfoRequired(row) { 
      var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
      var subject = "Info Needed: " + sheet.getRange("F19").getValues();
      var recipients = "testmail@gmail.com"
      var data = sheet.getRange('A2:C25').getValues();// define your range here
      var message = '';// change eventually the color here
      for (var row=0;row';
        }
        message += '';
      }
        message += '
    '; MailApp.sendEmail(recipients, subject, "", {htmlBody: message}); }

    Illustration example :

    enter image description here

提交回复
热议问题