Hi,
I have a question with uploading attachment in my received email to SharePoint with Flow.
I've been using the Save my Email Attachments to a Sharepoint Document Library and so far it is working well. My problem with it now is that it uploads all the attachments in the email (including pasted images on the email body). I would just like to ask if there is a way to only upload a specific file type when using this template?
Please prompt me for more details if you think you may have an explanation or a solution.
Thank you.
Hi @Anonymous,
We could add a condition to filter the Attachment Name, so only filtered attachment could be saved, the following example would only save the .txt file:
If you would like to filter other file type, then please click the Condition Advanced mode, and input the filter formula, for example, we would like to filter .doc, .docx, .txt, .xlsx, the formula should be:
@or( contains(item()?['Name'], '.txt'), or( contains(item()?['Name'], '.xlsx'), or( contains(item()?['Name'], '.docx'), contains(item()?['Name'], '.doc') ) ) )
If you need any further help on this, please post back.
Regards
Michael