Estou a enviar e-mails com planilhas do google, usando um modelo

0

Pergunta

Estou tentando executar o script abaixo, enviar e-mails a partir do modelo em Planilha[1] A1. Cada vez que o script ele dispara seleciona os dados para fillInTheTemplate função da gama

const grg = sheet.getRange(2, 1, 6, 36); Eu preciso de um código só para selecionar o intervalo para o fillTemplateFunction da linha que tem não tem "Email_Sent" na linha 36

Obrigado por qualquer ajuda

 * Sends emails from spreadsheet rows.
 */
function sendEmails() {
  const ss = SpreadsheetApp.getActive();
  const dsh = ss.getSheets()[0];//repl with getshbyname
  const drg = dsh.getRange(2, 1, dsh.getLastRow() - 2, 36);
  const vs = drg.getValues();
  const tsh = ss.getSheets()[1];//repl with getshbyname
  const tmpl = tsh.getRange('A1').getValue();
  var sheet = SpreadsheetApp.getActiveSheet();
  const grg = sheet.getRange(2, 1, 6, 36);
  objects = getRowsData(sheet, grg);
  for (var i = 0; i < objects.length; ++i) {
  var rowData = objects[i];}
  vs.forEach((r,i) => {
    let emailSent = r[35]; 
    let status = r[10];  
    if (status == 'PRICE ONLY' && emailSent != 'EMAIL_SENT') { 
    MailApp.sendEmail(r[9], 'SUPERMIX QUOTATION',fillInTemplateFromObject(tmpl, rowData) );//if last paramenter is the options object then you are missing the  null for the body. but since fillInTemplateFromObject is undefined I can not know that
    dsh.getRange(2 + i, 36).setValue('EMAIL_SENT');
    }
  });
}

/**
 * Replaces markers in a template string with values define in a JavaScript data object.
 * @param {string} template Contains markers, for instance ${"Column name"}
 * @param {object} data values to that will replace markers.
 *   For instance data.columnName will replace marker ${"Column name"}
 * @return {string} A string without markers. If no data is found to replace a marker,
 *   it is simply removed.
 */
function fillInTemplateFromObject(tmpl, grg) {
  console.log('[START] fillInTemplateFromObject()');
  var email = tmpl;
  // Search for all the variables to be replaced, for instance ${"Column name"}
  var templateVars = tmpl.match(/\$\{\"[^\"]+\"\}/g);

  // Replace variables from the template with the actual values from the data object.
  // If no value is available, replace with the empty string.
  for (var i = 0; templateVars && i < templateVars.length; ++i) {
    // normalizeHeader ignores ${"} so we can call it directly here.
    var variableData = grg[normalizeHeader(templateVars[i])];
    email = email.replace(templateVars[i], variableData || '');
  }
SpreadsheetApp.flush();
  return email;
}
/**
 * Iterates row by row in the input range and returns an array of objects.
 * Each object contains all the data for a given row, indexed by its normalized column name.
 * @param {Sheet} sheet The sheet object that contains the data to be processed
 * @param {Range} range The exact range of cells where the data is stored
 * @param {number} columnHeadersRowIndex Specifies the row number where the column names are stored.
 *   This argument is optional and it defaults to the row immediately above range;
 * @return {object[]} An array of objects.
 */
function getRowsData(sheet, range, columnHeadersRowIndex) {
  columnHeadersRowIndex = columnHeadersRowIndex || range.getRowIndex() - 1;
  var numColumns = range.getEndColumn() - range.getColumn() + 1;
  var headersRange = sheet.getRange(columnHeadersRowIndex, range.getColumn(), 1, numColumns);
  var headers = headersRange.getValues()[0];
  return getObjects(range.getValues(), normalizeHeaders(headers));
}

/**
 * For every row of data in data, generates an object that contains the data. Names of
 * object fields are defined in keys.
 * @param {object} data JavaScript 2d array
 * @param {object} keys Array of Strings that define the property names for the objects to create
 * @return {object[]} A list of objects.
 */
function getObjects(data, keys) {
  var objects = [];
  for (var i = 0; i < data.length; ++i) {
    var object = {};
    var hasData = false;
    for (var j = 0; j < data[i].length; ++j) {
      var cellData = data[i][j];
      if (isCellEmpty(cellData)) {
        continue;
      }
      object[keys[j]] = cellData;
      hasData = true;
    }
    if (hasData) {
      objects.push(object);
    }
  }
  return objects;
}

/**
 * Returns an array of normalized Strings.
 * @param {string[]} headers Array of strings to normalize
 * @return {string[]} An array of normalized strings.
 */
function normalizeHeaders(headers) {
  var keys = [];
  for (var i = 0; i < headers.length; ++i) {
    var key = normalizeHeader(headers[i]);
    if (key.length > 0) {
      keys.push(key);
    }
  }
  return keys;
}

/**
 * Normalizes a string, by removing all alphanumeric characters and using mixed case
 * to separate words. The output will always start with a lower case letter.
 * This function is designed to produce JavaScript object property names.
 * @param {string} header The header to normalize.
 * @return {string} The normalized header.
 * @example "First Name" -> "firstName"
 * @example "Market Cap (millions) -> "marketCapMillions
 * @example "1 number at the beginning is ignored" -> "numberAtTheBeginningIsIgnored"
 */
function normalizeHeader(header) {
  var key = '';
  var upperCase = false;
  for (var i = 0; i < header.length; ++i) {
    var letter = header[i];
    if (letter == ' ' && key.length > 0) {
      upperCase = true;
      continue;
    }
    if (!isAlnum(letter)) {
      continue;
    }
    if (key.length == 0 && isDigit(letter)) {
      continue; // first character must be a letter
    }
    if (upperCase) {
      upperCase = false;
      key += letter.toUpperCase();
    } else {
      key += letter.toLowerCase();
    }
  }
  return key;
}

/**
 * Returns true if the cell where cellData was read from is empty.
 * @param {string} cellData Cell data
 * @return {boolean} True if the cell is empty.
 */
function isCellEmpty(cellData) {
  return typeof(cellData) == 'string' && cellData == '';
}

/**
 * Returns true if the character char is alphabetical, false otherwise.
 * @param {string} char The character.
 * @return {boolean} True if the char is a number.
 */
function isAlnum(char) {
  return char >= 'A' && char <= 'Z' ||
    char >= 'a' && char <= 'z' ||
    isDigit(char);
}

/**
 * Returns true if the character char is a digit, false otherwise.
 * @param {string} char The character.
 * @return {boolean} True if the char is a digit.
 */
function isDigit(char) {
  return char >= '0' && char <= '9';
}```


google-apps-script google-sheets
2021-11-23 23:09:33
1

Melhor resposta

1

Quando eu vi o seu texto, parece que o script envia o e-mail, verificando a coluna "K" (número da coluna é de 11) e a coluna de "AJ" (número da coluna é de 36) com if (status == 'PRICE ONLY' && emailSent != 'EMAIL_SENT') {}. E, quando eu vi a sua folha de cálculo de exemplo, o número da linha que não tem valor de "EMAIL_SENT" nas colunas "AJ" é 5. Mas, quando eu vi a coluna "K", nenhum valor é existente. Por isso, o status == 'PRICE ONLY' && emailSent != 'EMAIL_SENT' retorna false. Por isso, o e-mail não é enviado. Eu pensei que esta poderia ser a razão para o seu problema.

Se você deseja enviar o e-mail quando a coluna "AJ" não tem valor "EMAIL_SENT", como sobre a seguinte modificação?

A partir de:

if (status == 'PRICE ONLY' && emailSent != 'EMAIL_SENT') { 

Para:

if (emailSent != 'EMAIL_SENT') {

Adicionado:

A partir do seguinte resposta,

O código está enviando o e-mail como eu exigir e 'Email_Sent' é colocado na coluna AJ como deveria. O problema que eu tenho relaciona-se com a função fillInTemplateFromObject(tmpl, grg) de função. O intervalo que eu estou usando para esta função é 'const grg = folha.getRange(2, 1, 5, 36); ' Isso começa na linha 2 linhas e inclui 5 linhas. Quando eu enviar o e-mail Os dados da célula no intervalo para o modelo de dados é a partir da linha 6 até que a linha que o Email_Sent é a linha 4. O Modelo deve ter os dados da mesma células que o Email está a ser enviado.

Neste caso, como a seguinte modificação?

A partir de:

  for (var i = 0; i < objects.length; ++i) {
  var rowData = objects[i];}
  vs.forEach((r,i) => {
    let emailSent = r[35]; 
    let status = r[10];  
    if (status == 'PRICE ONLY' && emailSent != 'EMAIL_SENT') { 
    MailApp.sendEmail(r[9], 'SUPERMIX QUOTATION',fillInTemplateFromObject(tmpl, rowData) );//if last paramenter is the options object then you are missing the  null for the body. but since fillInTemplateFromObject is undefined I can not know that
    dsh.getRange(2 + i, 36).setValue('EMAIL_SENT');
    }
  });

Para:

vs.forEach((r, i) => {
  let emailSent = r[35];
  if (emailSent != 'EMAIL_SENT') {
    MailAppaa.sendEmail(r[9], 'SUPERMIX QUOTATION', fillInTemplateFromObject(tmpl, objects[i]));
    dsh.getRange(2 + i, 36).setValue('EMAIL_SENT');
  }
});
2021-11-25 23:51:20

Desculpas, vou tentar ser mais clara em explicar o problema. O código está enviando o e-mail como eu exigir e 'Email_Sent' é colocado na coluna AJ como deveria. O problema que eu tenho relaciona-se com a função fillInTemplateFromObject(tmpl, grg) de função. O intervalo que eu estou usando para esta função é 'const grg = folha.getRange(2, 1, 5, 36); ' Isso começa na linha 2 linhas e inclui 5 linhas. Quando eu enviar o e-mail Os dados da célula no intervalo para o modelo de dados é a partir da linha 6 até que a linha que o Email_Sent é a linha 4. O Modelo deve ter os dados da mesma células que o Email está a ser enviado.
Les

Eu não sei como dizer o fillInTemplatefromObject função para selecionar as células da mesma linha que o e-mail é enviado. Eu espero que você vai entender o que eu estou olhando para alcançar. Obrigado por sua ajuda.
Les

@Les Obrigado por responder. Peço desculpas para os meus pobres habilidades de inglês. A partir de sua resposta, eu adicionei mais uma modificação ponto em minha resposta. Por favor, você poderia confirmar isso? Se eu entendia bem sua pergunta novamente, peço desculpas novamente.
Tanaike

Sim excelente, isso funciona perfeitamente. Muito obrigado Tanaike
Les

Em outros idiomas

Esta página está em outros idiomas

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................