I am reading emails from my outlook. My email contains an attachment. I want to download the attachment and use the same attachment file later in my workflow. How to achieve it?
Please use Save Attachments activity to save the attachments into a particular folder. (after first for loop in the attached screenshot)
For example, save the attachments into the following folder
folderPath = "C:\Documents\MailAttachments"
Now get the attached file name using the following activity -
Using the following expression you can get the full file path of the attachment.
attachmentFilePath = folderPath + "\" + attachment.Name
You can use this file path and use it later in the workflow.
If there are more than one attachment, save all file paths to a list.
Regards,
Karthik Byggari
Thank you. That’s simple.
Hi @Ulrich_Hoch!
You want to use “Save Attachments” activity where You just need to pass two arguments:
Your mail message and path where You want to save file stored in some variable.
Cheers!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.