Javascript使用签名和BCC通过Google电子表格在Gmail上发送邮件

时间:2017-05-09 03:46:18

标签: javascript google-apps-script google-sheets gmail

Google电子表格中是否有使用Javascript(或其他)方式获取Gmail帐户签名的方法?

详细说明: 我有一个包含信息的Google电子表格。 单击按钮时,它会识别谁必须接收信息,准备邮件并将其发送给此人。 但是,我想在邮件末尾添加发件人签名(包括姓名,电话,徽标等)。 如果我从其他地方获得签名,我就会打开,只要它可以根据谁发送邮件而改变。 这是我的志愿者协会,而不是工作。

如果我的代码可能有帮助(我希望填写var Signature):

 var Signature;
 var Receivers;
 var Subject;
 var Location ;
    var MailtoSend= "Hello, \n\n The next meeting will be at " + Location + ".  \n" + Signature;
    MailApp.sendEmail(Receivers, Subject, MailtoSend);

解:

我从其他网站找到了一条路(无法找到): 使用您的签名在您的Gmail草稿中创建一个模板,然后放入主题"模板"并在身体{身体}。 然后使用以下代码创建邮件的副本,并填写所有信息:

在发送邮件的功能中添加:

sendGmailTemplate(RecipientTo, RecipientCC, RecipientBCC, SujetAEnvoyer, CourrielAEnvoyer);

参考以下功能:

function sendGmailTemplate(RecipientTo, RecipientCC, RecipientBCC, subject, body, options) { //mettre à jour la quantité de recipeien cc bcc to
  options = options || {};  // default is no options
  var drafts = GmailApp.getDraftMessages();
  var found = false;
  for (var i=0; i<drafts.length && !found; i++) {
    if (drafts[i].getSubject() == "Template") {
      found = true;
      var template = drafts[i];
    }
  }
  if (!found) throw new Error( "Impossible de trouver le brouillon 'Template' sur le gmail" );

  // Generate htmlBody from template, with provided text body
  var imgUpdates = updateInlineImages(template);
  options.htmlBody = imgUpdates.templateBody.replace('{BODY}', body);
  options.attachments = imgUpdates.attachments;
  options.inlineImages = imgUpdates.inlineImages;
  options.cc = RecipientCC;
  options.bcc = RecipientBCC;
  options.replyTo = "";

  return GmailApp.sendEmail(RecipientTo, subject, body, options); 
}


function updateInlineImages(template) {
  //////////////////////////////////////////////////////////////////////////////
  // Get inline images and make sure they stay as inline images
  //////////////////////////////////////////////////////////////////////////////
  var templateBody = template.getBody();
  var rawContent = template.getRawContent();
  var attachments = template.getAttachments();

  var regMessageId = new RegExp(template.getId(), "g");
  if (templateBody.match(regMessageId) != null) {
    var inlineImages = {};
    var nbrOfImg = templateBody.match(regMessageId).length;
    var imgVars = templateBody.match(/<img[^>]+>/g);
    var imgToReplace = [];
    if(imgVars != null){
      for (var i = 0; i < imgVars.length; i++) {
        if (imgVars[i].search(regMessageId) != -1) {
          var id = imgVars[i].match(/realattid=([^&]+)&/);
          if (id != null) {
            var temp = rawContent.split(id[1])[1];
            temp = temp.substr(temp.lastIndexOf('Content-Type'));
            var imgTitle = temp.match(/name="([^"]+)"/);
            if (imgTitle != null) imgToReplace.push([imgTitle[1], imgVars[i], id[1]]);
          }
        }
      }
    }
    for (var i = 0; i < imgToReplace.length; i++) {
      for (var j = 0; j < attachments.length; j++) {
        if(attachments[j].getName() == imgToReplace[i][0]) {
          inlineImages[imgToReplace[i][2]] = attachments[j].copyBlob();
          attachments.splice(j, 1);
          var newImg = imgToReplace[i][1].replace(/src="[^\"]+\"/, "src=\"cid:" + imgToReplace[i][2] + "\"");
          templateBody = templateBody.replace(imgToReplace[i][1], newImg);
        }
      }
    }
  }
  var updatedTemplate = {
    templateBody: templateBody,
    attachments: attachments,
    inlineImages: inlineImages
  }
  return updatedTemplate;
}

1 个答案:

答案 0 :(得分:0)

没有一种方法可以请求您已创建的签名。可以使用inlineImages自己创建一个。可以在此处找到相关文档:https://developers.google.com/apps-script/reference/gmail/gmail-app#sendemailrecipient-subject-body-options