How can I filter ?
Hi
the condition should be like this
"[SenderEmailAddress]= ātest@gmail.comā "
and get the variable from that GET OUTLOOK MAIL ACTIVITY and to get the count
mailMessage.Count.ToString in writeline activity
Cheers @sufyant
Fine
is that mail now unread or marked as read
Cheers @sufyant
No they are unreaded now
hmmā¦i wonder why it didnt, let me think whether i missed any
the condition is correct
@sufyant
Use Get Outlook
Then In for each use condition
If
mail.from.address.ToString.contains(ātest@mail.com")
Then do steps and then Use break as you dont want to see another mails or if you want a total number of mails from that then u can set a flag
before for each
Assign Flag=āā and Count=0
In for each
if
mail.from.address.ToString.contains(ātest@mail.com")
then if Flag=āā
then send notification or whatever
after that in then only assign Flag=āMail Sentā
after that
Assign Count=count+1
So finally You will get only one notification when you get mail from that id
also u can use COUNT
for not getting from this id means If count =0 no mails from that id
Plus in Count You will get no of mails from that ID
it my fault. its working now
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.