Home > Software engineering >  Parse email and PDF data into Google Sheet?
Parse email and PDF data into Google Sheet?

Time:11-03

I need a Google Script to monitor my GSuite email, look for a specific sender, and then parse multiple data from an attached PDF file, into A Google Sheet.

Is this even possible with Google Script only?

CodePudding user response:

Yes you can with GmailApp an Apps Script time-based trigger Google Drive to deal with the attachments and read it (follow this tutorial for example).

  • Related