微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

为 sendmail 创建邮件列表

如何解决为 sendmail 创建邮件列表

我想创建一个电子邮件列表,这些列表在工作表的列中列出。

我该怎么做?

示例:

A 列 电子邮件 1 电子邮件 2 电子邮件 3

邮寄 = A 列

MailApp.sendEmail({
     to: mailling,subject: "test",body: "Test message",

解决方法

如果您的电子邮件位于从第 2 行开始的 A 列中:

function getEmails() {
  const ss = SpreadsheetApp.getActive();
  const sh = ss.getSheetByName('Sheet1');
  const emails = sh.getRange(2,1,sh.getLastRow() - 1,1).getValues().flat();
  return emails.join(',');
}

function sendEmails() {
  MailApp.sendEmail({to: getEmails(),subject: "test",body: "Test message"});
}
,

我认为您应该像评论中建议的那样检查课程的文档,它具有非常好的功能,可以改善您发送电子邮件的方式。无论如何,这里有一个可以帮助您的示例。


    function sendMail() {
    
    //Each numer means the column of the sheets thats going to grab the value
      var first = 0;
      var second = 1;
      var third = 2;
      
    //In the Column D must have the emails  
      var fourth =3;
      
    //Specifies the HTML document that going to give the structure of the email  
      var emailTemp = HtmlService.createTemplateFromFile("email");
      
    //Tells wich is the sheet to take information
    //in this case the sheets name is "Data Base"
      var ws = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Data Base");
      
    //Gives the range of the columns that the information is going to be  
      var data = ws.getRange("A1:E" + ws.getLastRow()).getValues();
      
    //This is an optional filter in the Column F so you can filter wich rows to run
      data = data.filter(function(r){ return r[5] == true });
      
    //To use the variables in between the HTML file your going to use the value after "emailTemp." as <?= fr ?>
      data.forEach(function(row){
        
        emailTemp.fr = row[first];
        emailTemp.se = row[second];
        emailTemp.th = row[third];
        var htmlMessage = emailTemp.evaluate().getContent();
        GmailApp.sendEmail(row[fourth],"HEEERE GOES THE SUBJECT OF THE EMAIL","Your email doesn't support HTML.",{name: "Email",htmlBody: htmlMessage})
       });

这里我使用了一个 html 模板来发送包含从其他列中提取的变量的电子邮件。你可以看看这个github

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。