I am saving transactions of my cases in an Excel log file and sending that to my email after each transaction using send outlook mail message. It works perfectly.
Now I want to move that mail to a particular folder “AutomationEmail” in my outlook. I am not using get outlook email message activity. How to move the email sent by bot to folder “AutomationEmail”?
Hi @Vivek_Arunagiri. Is it not possible without using get outlook email activity i.e to send the mail directly to a specified folder or is there any custom activity? coz in my process there is no requirement now to get outlook emails just want to save the emails sent by bot to a particular folder
In Get outlook mail, you will get output mail messages as collection. So you need to use for each to loop each mails. Inside the for each, you will get individual mail. So move mail message activity should be placed inside for each.