google-apps-script-snippets
google-apps-script-snippets copied to clipboard
Unzip Gmail attachments
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);
});
}