Transform EMAIL to DOTX in Andorid Apps
Desing Andorid applications to export EMAIL to DOTX by using Andorid via Java API
How to Render EMAIL to DOTX 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 DOTX 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 DOTX.Convert EMAIL to DOTX in Andorid
- Open EMAIL file using MailMessage class
- Convert EMAIL to HTML by using save method
- Load HTML by using Document class
- Save the document to DOTX format using save method and set DOTX 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 DOTX 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.DOTX
document.save("output.dotx", SaveFormat.DOTX);
MSG What is MSG File Format?
MSG is a file format used by Microsoft Outlook and Exchange to store email messages, contact, appointment, or other tasks. Such messages may contain one or more email fields, with the sender, recipient, subject, date, and message body, or contact information, appointment particulars, and one or more task specifications. The properties that constitute the Message object, including are also a part of the MSG file. MSG file has headers, main message body, and hyperlinks as plain ASCII text. MSG files are also suitable with the programs that need Microsoft’s Messaging Applications Programming Interface (MAPI).
Read MoreDOTX What is DOTX File Format?
Files with DOTX extension are template files created by Microsoft Word to have pre-formatted settings for generation of further DOCX files. A template file is created in order to have specific user settings that should be applied to subsequent flies created from these. These settings include page margins, borders, headers, footers, and other page settings. Such templates are used in official documents such as company letterheads and standardized forms.
Read More