Open outlook mail to review it

Hello,

I am running an automation that creates and email and saves it to the drafts. Is it possible to open the email draft at the end of the automation?

Yah that’s possible
-use GET OUTLOOK MAIL ACTIVITY where in the folder mention as “Draft” and get the output with a variable named list_mailmessage
—now use a for each activity and mention the above. Variable as input and change the type argument as system.net.mail.mailmessage
—inside the loop use SAVE MAIL MESSAGE activity where mention the mail input as item and folder path with filename and file extension as .eml
—then use a START PROCESS activity and mention the same file path of that .eml file so that it will open in the foreground
Like wise it will open each mail from draft in foreground once after saving it

Hope this would help you
Cheers @Asanka