How to convert .msg file to .txt file

Hi
welcome back to UiPath community

for this
–use a assign activity like this
arr_files = Directory.GetFiles(“yourfolderpath”,“*.msg”)
where arr_files is a variable of type array of string
–now use FOR EACH activity where pass the above variable as input and change the type argument as string in the property panel
–inside the loop use START PROCESS activity where pass the file path of .msg file as item.ToString and it would open that mail in the foreground of the screen

then for this

we can use GET TEXT or SCREEN SCRAPPING method to get the date

Cheers @Kotla_Gunasekhar

2 Likes