google-apps-script-snippets icon indicating copy to clipboard operation
google-apps-script-snippets copied to clipboard

Unzip Gmail attachments

Open oshliaer opened this issue 8 years ago • 1 comments

function unzipGmail(){
  var message = GmailApp.getMessageById('15ea48eff1160e89');
  var blobs = message.getAttachments()[0].copyBlob();
  var data = Utilities.unzip(blobs);
  data.forEach(function(blob){
    DriveApp.createFile(blob);
  });
}

oshliaer avatar Sep 21 '17 13:09 oshliaer