Inside the Flow Decision condition, if I write one condition like this ==>
mails.Where(Function(s) s.Subject.Contains(“Trigger”)).Any to check the subject of the email I get a boolean output and the flow is working fine.
But in case of multiple conditions like this ==>
(mails.Where(Function(s) s.Sender.Address.Contains(“mymail@gmail.com”)).Any) && (mails.Where(Function(s) s.Subject.Contains(“Trigger”)).Any) I am getting an error.
Please help!!