11-07-25 04:47 AM
I used the Get File action to retrieve an .xlsx attachment from an email, and it was successfully stored in a collection. The challenge I’m facing now is how to extract the file from the collection and save it to a specific folder path on my system.
Please assist
14-07-25 10:17 AM
Hi @blazino17 - I recommend using the Outlook VBO – Get Received Items (Expert), and then applying a DASL Query like this:
@SQL=urn:schemas:httpmail:sendername = 'Mukesh Kumar' AND urn:schemas:httpmail:subject LIKE '%Test Emails%' (Replace it with your Sender Name/Subject Key)
You'll also need an action to save attachments(Action should be present in the Outlook VBO), which should take the Entry ID, Folder Path, and File Pattern as inputs. The action will execute the code and save the attachments to the specified folder path. (I’m using a custom built Outlook VBO).