Hello,
I am trying to insert attachments into a Sharepoint list, from an email but I am facing some problems with it.
If the email has an assignature with images, I will get them all but I only want the files who came as attachments and not the images from the assignature of the email.
How can I solve this?
Solved! Go to Solution.
Does the attachments of your email contain any image files? If not, you can add a condition to check if the attachment is an image and if it is not only then create the attachment in sharepoint. Please see the screenshot below:
I have put png in both conditions yuo can change that to jpg, jpeg and png.
Expression:
last(split(items('Apply_to_each_2')?['Name'],'.'))
This splits the file name at . and gets the extension.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Does the attachments of your email contain any image files? If not, you can add a condition to check if the attachment is an image and if it is not only then create the attachment in sharepoint. Please see the screenshot below:
I have put png in both conditions yuo can change that to jpg, jpeg and png.
Expression:
last(split(items('Apply_to_each_2')?['Name'],'.'))
This splits the file name at . and gets the extension.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Hello @yashag2255 ,
I tried that but all the items I get returns me false. They are all png, only one is pdf, but the condition don't work...
You can try using PNG instead of png (I just tried and it worked for me).
Also, you can use the 'Attachment content type' and compare that with image/png to identify an image of png type.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!