使用Google脚本将图片正确附加到电子邮件中

问题描述 投票:0回答:2

我正在尝试使用Google表单和表格制作脚本,以帮助实现自动化并跟踪工作现场的技术人员照片。

设置是他们在工作现场拍照,并在Google表单中填写相关信息,然后将图片附加在此处。提交表单后,它将运行此脚本以将电子邮件发送到办公室中每个人都可以看到的预定电子邮件。

到目前为止,我已经能够从电子邮件中获取除图片之外的表格中的信息。

附带图片的信息以驱动器URL形式出现,该驱动器URL全部作为字符串转储到一个单元格中。

"https://drive.google.com/open?id=xxxxxxxx, https://drive.google.com/open?id=yyyyyyyy, https://drive.google.com/open?id=zzzzzzzz"

我使用输出此内容的.split(" ,)将此字符串转换为数组。

[https://drive.google.com/open?id=xxxxxxxx, https://drive.google.com/open?id=yyyyyyyy, https://drive.google.com/open?id=zzzzzzzz]

然后,我遍历数组并使用.slice(33)摆脱url,所以剩下的就是驱动器ID(可能有更好的方法,但是现在可以使用。)>

[xxxxxxxx, yyyyyyyy, zzzzzzzz]

这是我遇到麻烦的部分。然后,我通过该数组迭代agian并获取driveID并将文件作为JPEG获取。然后,我使用.push将其放入另一个数组中,以将它们附加到电子邮件中。

问题是,我认为我没有正确地执行此步骤,因为没有将正确的内容推入数组和/或假设MailApp.sendEmail甚至可以将数组用于附件。我也不完全确定[Blobs]的工作方式以及如何正确使用它们,这可能就是我遇到的问题。

再次,这是由很少的经验编写的代码,可能还需要进一步优化,但是目前,我只需要适当地附上图片以表明其有效即可。

function onFormSubmit(e) {
  //for testing purposes
  var values = e.namedValues;
  //gets the form's values
  var pureValues = e.values;

  //sets the values
  var email = pureValues[1];
  var woNum = pureValues[2];
  var firstN = pureValues[3];
  var lastN = pureValues[4];
  var desc = pureValues[5];
  var superDuperRawPics = pureValues[6];

  //splits the picture urls into an array
  var superRawPics = superDuperRawPics.split(", ");

  //slices the url part off to get the drive ID
  var i, rawPics =[]
  for (i = 0; i < superRawPics.length; ++i) {
    rawPics.push(superRawPics[i].slice(33))
       }

  //takes the array of ID's and gets the drive file
  var j, picAttach =[]
  for (j = 0; j < rawPics.length; ++j) {
    var driveID = DriveApp.getFileById(rawPics[j]);
    var drivePic = driveID.getAs(MimeType.JPEG);
    picAttach.push(drivePic);
  }

  //sets the subject of the email to be Jobsite Pictures and the work number
  var subject = "Jobsite Pictures" + " " + woNum;

  //sets the body of the email
  var body = "Technician: " + email + " \n" + 
             "WO#: " + woNum + " \n" + 
             "Customer: " + firstN + " " + lastN + " \n" + 
             "Description: " + desc;

  //for checking if the vars are set correctly
  Logger.log(superDuperRawPics);
  Logger.log(superRawPics);
  Logger.log(rawPics);
  Logger.log(picAttach);
  Logger.log(subject);
  Logger.log(body);

  //sends email to me with the new info
  MailApp.sendEmail('[email protected]', subject, body, {attachments: [picAttach]});


}
    

我正在尝试使用Google表单和表格制作脚本,以帮助实现自动化并跟踪工作现场的技术人员照片。设置是他们在工作现场拍照并填写...

email google-apps-script google-drive-api blob email-attachments
2个回答
0
投票

如果您只想附加它们,请使用options attachments


0
投票

我很笨,当不需要时在attachments:中添加了括号。

© www.soinside.com 2019 - 2024. All rights reserved.