Hi, I need your urgenlty help.
I am reading a email on FIFO basis. It’s working fine. But like I have 10 or 5 unread email in the Inbox.
My bot will read the Oldest email. But I want to run only once then I don’t want to itirate it second time.
Fine
Along with current co diction you have in while loop include this condition as well your present condition AND counter < 1
Where counter is a variable of type int32 with default value as 0 defined in the variable panel
—inside the while loop atlast use a assign activity like this counter = counter + 1
So this will make the loop to iterate only once
EmailCount is the total number of emails, Here I am reading the latest once only. It’s working fine. But I want to iterate only one time not the second time,