HTML JPG PDF XML PPTX
Aspose.Total  for Java
DOC

Transform EMAIL to WORDML in Andorid Apps

Desing Andorid applications to export EMAIL to WORDML by using Andorid via Java API

How to Render EMAIL to WORDML in Andorid Applications

Andorid Apps are easy to use for end users on daily bases. Day by day numbers of Andorid phones users are increasing. Using the powerful Aspose.Total for Android via Java File Format Automation libraries you can develope Email manipulation and convertion applications. You can convert EMAIL to WORDML by the combination of Aspose.Email for Android Java & Aspose.Words for Andorid Java . Using the first API you can convert EMAIL file format to HTML and by using second API, you can render HTML as WORDML.

Convert EMAIL to WORDML in Andorid

  1. Open EMAIL file using MailMessage class
  2. Convert EMAIL to HTML by using save method
  3. Load HTML by using Document class
  4. Save the document to WORD_ML format using save method and set WORD_ML as SaveFormat

Get Started with Andorid via Java APIs

You can easily use Aspose.Total for Android via Java directly from Maven and install Aspose.Email for Android via Java and Aspose.Words for Andorid via Java in your applications.

Alternatively, you can get a ZIP file from downloads .

Code for EMAIL to WORDML Conversion in Andorid Apps

// load the EMAIL file to be converted
MailMessage message = MailMessage.load("sourceFile.msg"); 
// save EMAIL 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.WORD_ML
document.save("output.word_ml", SaveFormat.WORD_ML); 

What is EMAIL File Format

An email file has a specific format that is recognized by email programs. The format includes a header and a body, which are separated by a blank line. The header contains the senders email address, the recipients email address, the subject of the email, and the date and time the email was sent. The body of the email contains the actual message. Email files can be in either plain text or HTML format. HTML emails are more common these days, as they can include images and other formatting.

Read More

What is WORDML File Format

Microsoft Word 2003 uses a proprietary document format called WordprocessingML. This format is a subset of XML, and uses a custom XML schema. The schema is designed to store all the information in a Word document, including text, formatting, images, and other content. WordprocessingML is designed to be both human-readable and machine-readable. This means that it is easy for people to read and edit WordprocessingML documents using a text editor, and it is also easy for computers to process and convert WordprocessingML documents into other formats. WordprocessingML is an open standard, which means that anyone can develop software that can read and write this format. This has led to the development of a number of open source programs that can read and write WordprocessingML documents, such as OpenOffice.org and LibreOffice.Microsoft Word is the most popular word processing program in the world, and WordprocessingML is the most popular XML-based word processing format.

Read More

Explore EMAIL Conversion Options with Android