I will receive input from a particular mailbox and process each mail(having a table to which tab I need to update) and update in an application. Here I want to use queue to store the email and get each item extract the email content and update in an application.
I am confused how can I Store the email in queue and compare with the outlook email in get transcation data and process it
Hi @Priyanga_Karnan ,
1)First pass the mail message to the queue by using add queue item activity and changing the type to System.net.mail.mailmessages.
2)Secondly, just provide the queue name which you used to add mail message in get transaction item.
3)In out_transaction_item you will get the queue item which consists the mail message.
4)Now in process transaction perform whatever desired operation you want to perform with the mail message.
Hi @Priyanga_Karnan ,
I also tried, you cannot pass the entire mail message to queue in UiPath because it is not serializable but yes you can pass the mail body, subject and other information as a string.