MS Outlook VBO get received item returns unnecessary attachments
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
21-06-21 09:33 AM
I am using Get Received item from MS Outlook VBO but in the collection, I'm getting multiple attachments while my email has only one attachment present. So basically it is saving company logo, signature, and other stuff also as an attachment. How to clear out unnecessary attachments/
I tried filtering it and it works but this will fail if the sender is attaching image file .jpg/.png
So how to filter out the original attachments and remove all other items.
------------------------------
Thanks & Regards,
Tejaskumar Darji
Sr. RPA Consultant-Automation Developer
------------------------------
I tried filtering it and it works but this will fail if the sender is attaching image file .jpg/.png
So how to filter out the original attachments and remove all other items.
------------------------------
Thanks & Regards,
Tejaskumar Darji
Sr. RPA Consultant-Automation Developer
------------------------------
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
21-06-21 02:28 PM
For .jpg/.png - you can follow some standard naming convention as per process and filter it?
------------------------------
Manish Kumar
------------------------------
------------------------------
Manish Kumar
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
21-06-21 02:33 PM
Maybe try to check the sufix of the attachment like this :
EndsWith(Upper([Attachement Filename.FileName]), "XLSX")
if it does not end with .xlsx delete the file. It should get rid of jpeg, pictures etc.
------------------------------
Andrzej Fidos
------------------------------
EndsWith(Upper([Attachement Filename.FileName]), "XLSX")
if it does not end with .xlsx delete the file. It should get rid of jpeg, pictures etc.
------------------------------
Andrzej Fidos
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
21-06-21 03:34 PM
That is a good option and it works fine. But in my case, there are chances that the sender may attach JPG/PNG/JPEG files as an email attachment and i don't want to get rid of them.
------------------------------
Thanks & Regards,
Tejaskumar Darji
Sr. RPA Consultant-Automation Developer
------------------------------
------------------------------
Thanks & Regards,
Tejaskumar Darji
Sr. RPA Consultant-Automation Developer
------------------------------
