Email Search With Specific Email Id

how can we search email with particular email id in gmail.suppose we login to gmail id using credentials .and then we should be able to navigate pages in gmail inbox to search for email with particular email id then we should be able to retrieve that email info.

@varun5,

You can filter it once you get all the mails using IMAP, by looping each item you can check the sender address

item.From.Address.Contains("yourRequiredEmailAddress")
1 Like

yah with this condition in IF activity
item.Sender.Address.ToString.Equals(“varun@gmail.com”)

where item is the variable from FOR EACH actiity with input as GET IMAP MAIL activity output variable

Cheers @varun5

1 Like