How to set flow of execution so as one transaction item (which is email) completes processing and then picks the next email. then it pi

My reframework is set to begin with reading email, process it, reply to that email and copy that it in some other application.

  1. while executing it reads first email , process it , copies it successfully.(email is transaction item)
  2. while it should pick next email for processing , it stills picks the same first email and keeps reading it until stopped manually.

Please help me where should I change so as it reads next email and process it.

@automated

You should use get all mails…and change transaction item to mailmessage and then then use. If condition

In_transactionnumber < mails.Count

In then block use in_transactionitem = mails(in_Tranaactionumber)

And in else block assign nothing

Cheers

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.