Process : automation process running in 3 machines…once processed all the Queue item. The bot which is ending at the last should retrieve the data from Queue and send the excel as email to the customer.
Issue : Normal case it is working…if 3 bots end n same time…getting 3 emails.
solution : i need only one email at the end.
please help any new approach to handle this issue…
@saransr - to avoid the duplicate/multiple mails try below…
Create Asset → IsMailSent
Project Init → Set Asset value as → No
At End of the process → Check IsMailSent Value…
If it is No → Set Asset value as Yes → do the send mail activitiy and exit the process.
If it is Yes → ignore sent mail activity and exit the process.