How to filter attachments for example images in the body of the email?

Hi,

Currently working on a project that requires me to save attachments in a folder however when I use the save attachments activity, the images that come with the message signatures are saved too. I know that I am able to use the filter in properties to filter out the images but how?

Thank you!

Regards,

Hello @Captainshame ,

What kind of attachments you want to save?

In the filter section, you can write a Regex pattern, in order to filter for specific types of documents.

Please check this post, might help you.

Vasile.

Hi @wasea,

Im trying to filter out the pdf files only.

Regards,

You can try this pattern:

“.*(?i)(.PDF|.pdf)”

If you’re interested to learn more about regular expressions (RegEx), read this post:

Vasile.

1 Like