How Can I Download .xlsx File from the particular Email Address ? I am able to download all but I just need .xlsx as it is downloading symbols and every Image (Signature Images).
Please provide Help to get particular email and Attachement.
How Can I Download .xlsx File from the particular Email Address ? I am able to download all but I just need .xlsx as it is downloading symbols and every Image (Signature Images).
Please provide Help to get particular email and Attachement.
If youa re using office 365 then try using for each email activity ans save email attachments activity…they have in build filter options in them
Cheers
just add an “.xslx” in the filter property of your save attachments activity
Regards
Got it. And how about filter Email account ? I mean want to read only Emails from ABC account.
in your get outlook emails activity, put this filter in the filter property
"[SenderEmailAddress] = 'xyz@xyz.com' "
Regards
I used that and that is working for outside of Company’s emails. For all emails it is not working. It gives me 0 count if email is from our company.
Give a try with
(From m In mailMessages
Where m.Sender.Address.Trim.Equals("yourEmail@email.com")
Select m).ToList()
Regards
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.