I am working on outlook application , am facing the problem like email body contains some images while using save attachment activities and it was downloading all the attachment including that body content images.
I would like to omit the body content images while using save attachment is it possible?
Use "(\.|\/)(?!JPEG|jpeg|JPE|jpe|JPG|jpg|PNG|png|GIF|gif).*" in the “Filter” property of the “Save Attachments” activity.
This will only save attachments that are not one of the image extensions above (also ignoring embedded images). Of course, this means that if they actually do send you an image as an actual attachment, it will be ignored as well.