Gmail应用脚本从电子表格添加BCC

时间:2013-09-09 16:42:04

标签: javascript excel email google-apps-script gmail

我创建了此代码,以便从Google Spreadsheet发送模板电子邮件。我真的需要BCC另一个收件人。我已经查看了类Gmail应用程序。这对我来说没有多大意义。

var EMAIL_SENT = "EMAIL_SENT";

function onOpen() {
  var ss = SpreadsheetApp.getActiveSpreadsheet();

  var menu = [{
    name: "Send Email",
    functionName: "sendEmails2"
  }];

  ss.addMenu("Send Email", menu);
}

function sendEmails2() {

  var sheet = SpreadsheetApp.getActiveSheet();

  var startRow = 2;  // First row of data to process

  var numRows = 2;   // Number of rows to process

// Fetch the range of cells A2:B3

  var dataRange = sheet.getRange(startRow, 1, numRows, 3)

// Fetch values for each row in the Range.

  var data = dataRange.getValues(); 





for (var i = 0; i < data.length; ++i) {
var row = data[i];

var emailAddress = row[0];  // First column

var message = "Hello Team,\n\n" + row[1] + " Please do the Following:...";       // Second column

var emailSent = row[2];     // Third column
if (emailSent != EMAIL_SENT) {  // Prevents sending duplicates
  var subject = "Team Email";
  MailApp.sendEmail(emailAddress, subject, message);
  sheet.getRange(startRow + i, 3).setValue(EMAIL_SENT);
  // Make sure the cell is updated right away in case the script is interrupted
  SpreadsheetApp.flush();
}


}
}

1 个答案:

答案 0 :(得分:1)

使用可选参数检查sendEmail(recipient, subject, body, options)方法的版本,其中可以包含bcc

Class GmailApp也有类似的方法sendEmail(recipient, subject, body, options),其中可以包含bcc

示例:

...
var options = {
   bcc: 'bccmail0@domain.ext, bccmail1@domain.ext'
};
MailApp.sendEmail(emailAddress, subject, message, options);
...