import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.MarkupConvertOptions;

public class ConvertOutlookEmailToHtmlInJava {
    public static void main(String[] args) { // Main function to convert Outlook Email to HTML in Java
        // Remove the watermark in output HTML document by adding license
        License lic = new License();
        lic.setLicense("GroupDocs.Conversion.lic");

        // Load the source EML or MSG file for conversion to HTML
        Converter converter = new Converter("sample.eml");

        // Set the convert options for HTML format
        MarkupConvertOptions options = new MarkupConvertOptions();

        // Convert and save the Outlook Email in HTML format
        converter.convert("converted.html", options);

        System.out.println("Done");
    }
}