We have to develop an in-house mail app. Please let me know what the best CPP library used to read EML file and Outlook MSG file?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
EML is basically the same as MHT; it’s a plain text format which you can parse yourself, and I believe the WebBrowser control can also display the contents of an EML/MHT.
MSG is a binary MAPI format. You can use the MAPI libraries to deal with these (Windows only). For more information on how to deal with that, see this page.