How to specify from which particular email account you wanna download attachment in Email Attachment

Hi,

Sample like you want to filter the emails with the subject.

item.subject.contains(“Your email subject or partial subject”)

or if you want email from specific email id.

item.From.contains(“Kirnakumar@gmail”)

Or if we want to search fixed email id we could use expression like below

item.From.Equals(" Email adress ")

1 Like