I am trying to read an .MSG file from a local system in a Java application using the Java mail API. I searched, but results suggest using some other libraries.
edit 20-12-2019: the email conversion logic has been moved to a dedicated open source library: outlook-message-parser (the EmailConverter class in Simple Java Mail is still there as well).
original answer:
Simple Java Mail, an open source library for sending emails over SMTP has an EmailConverter class that can read and convert Outlook messages directly to MimeMessage, Email or EML.
Under the hood it uses a fork of msgparser (Outlook Message Parser), which on its turn uses Apache POI.
From the Features page:
// from Outlook .msg
Email email = EmailConverter.outlookMsgToEmail(readToString("yourMessage.msg"));
Email email = EmailConverter.outlookMsgToEmail(new File("yourMessage.msg"));
Email email = EmailConverter.outlookMsgToEmail(getInputStream("yourMessage.msg"));
String eml = EmailConverter.outlookMsgToEML(readToString("yourMessage.msg"));
String eml = EmailConverter.outlookMsgToEML(new File("yourMessage.msg"));
String eml = EmailConverter.outlookMsgToEML(getInputStream("yourMessage.msg"));
MimeMessage mimeMessage = EmailConverter.outlookMsgToMimeMessage(readToString("yourMessage.msg"));
MimeMessage mimeMessage = EmailConverter.outlookMsgToMimeMessage(new File("yourMessage.msg"));
MimeMessage mimeMessage = EmailConverter.outlookMsgToMimeMessage(getInputStream("yourMessage.msg"));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With