HTML
JPG
PDF
XML
PPTX
DOC
Java API to Render EML to FLATOPC
Export EML to FLATOPC by using on premise Java API without using any third party dependencies
How to Render EML to FLATOPC Using Java
Email conversion is a powerful feature that Java developers can integrate within any Java J2SE, J2EE, J2ME applications via Aspose.Total for Java . By using two APIs within the package you can convert Email EML to FLATOPC without any third party dependencies. Firstly, you can use Email Manipulation API Aspose.Email for Java to convert EML file format to HTML. Secondly, you can render HTML to FLATOPC by using Document Processing API Aspose.Words for Java .EML to FLATOPC Conversion on Java
- Open EML file using MailMessage class
- Convert EML to HTML by using save method
- Load HTML by using Document class
- Save the document to FLAT_OPC format using save method and set FLAT_OPC as SaveFormat
Get Started with Java File Format APIs
You can easily use Aspose.Total for Java directly from a Maven based project and include Aspose.Words for Java and Aspose.Email for Java in your pom.xml.
Alternatively, you can get a ZIP file from downloads .
Java Code for EML to FLATOPC Rendering
MailMessage message = MailMessage.load("sourceFile.eml");
// save EML as a HTML
message.save("HtmlOutput.html", SaveOptions.getDefaultHtml());
// load HTML with an instance of Document
Document document = new Document("HtmlOutput.html");
// call save method while passing SaveFormat.FLAT_OPC
document.save("output.flat_opc", SaveFormat.FLAT_OPC);
EML What is EML File Format?
EML file format represents email messages saved using Outlook and other relevant applications. Almost all emailing clients support this file format for its compliance with RFC-822 Internet Message Format Standard. Microsoft Outlook is the default software for opening EML message types. EML files can be used for saving to disc as well as sending out to recipients using communication protocols.
Read MoreFLAT_OPC What is FLAT_OPC File Format?
Other Conversion Options
EML TO PCL (Printer Command Language Document)
EML TO ODT (OpenDocument Text File Format)
EML TO MD (Markdown Language)
EML TO DOC (Microsoft Word Binary Format)
EML TO WORDML (Microsoft Word 2003 WordprocessingML)
EML TO BMP (Bitmap Image File)
EML TO EMF (Enhanced Metafile Format)
EML TO TIFF (Tagged Image File Format)
EML TO PNG (Portable Network Graphic)
EML TO DOTX (Microsoft Word Template File )
EML TO OTT (OpenDocument Standard Format)
EML TO DOCM (Microsoft Word 2007 Marco File)
EML TO PS (PostScript File)
EML TO EPUB (Open eBook File)
EML TO GIF (Graphical Interchange Format)
EML TO DOT (Microsoft Word Template Files)
EML TO DOCX (Office 2007+ Word Document)
EML TO SVG (Scalar Vector Graphics)
EML TO PDF (Portable Document Format)
EML TO DOTM (Microsoft Word 2007+ Template File)
EML TO JPEG (Joint Photographic Expert Group)
EML TO XPS (XML Paper Specifications)
EML TO RTF (Rich Text Format)