I have a problem statement where I need to Read all the saved outlooks emails (.eml.msg) files and extract the values like body, subject and attachments(similar to what an outlook activities does).
Use the Marketplaces package as Email Activitie for Local Emails (.eml/.msg)
After installing you can use Read EML activity or Read MSG activity, and it will directly give you Subject, Body and Attachments from the outlook saved emails
@Biswajeet_kumar USer for ach file in folder activity and indicate the folder where you have save the mail messages later on use the currentfile.fullname and use invoke code activity and use following invoke code
Try
Dim outlookApp As Microsoft.Office.Interop.Outlook.Application = New Microsoft.Office.Interop.Outlook.Application()
Dim msg As Microsoft.Office.Interop.Outlook.MailItem = CType(outlookApp.Session.OpenSharedItem(filePath), Microsoft.Office.Interop.Outlook.MailItem)