As a .NET developer, you may need to add EML to PS conversion features to your applications. To do this, you can use the powerful file format manipulation APIs from Aspose.Total for .NET. Aspose.Email for .NET provides the ability to convert EML file format to HTML. After that, Aspose.Words for .NET can be used to render HTML to PS.
Aspose.Total for .NET is a suite of APIs that provides a comprehensive set of file format manipulation features. It includes APIs for manipulating a wide range of file formats, including Microsoft Office, PDF, HTML, and more. Aspose.Email for .NET is a powerful API for working with email messages in various formats, including EML. It provides features for creating, reading, and manipulating email messages. Aspose.Words for .NET is an API for working with Microsoft Word documents. It provides features for creating, reading, and manipulating Word documents in various formats, including HTML.
Using Aspose.Total for .NET, you can easily convert EML to PS. First, you can use Aspose.Email for .NET to convert EML file format to HTML. Then, you can use Aspose.Words for .NET to render HTML to PS. This process is simple and straightforward, and it can be done quickly and easily.
Aspose.Total for .NET is a great choice for .NET developers who need to add EML to PS conversion features to their applications. It provides powerful APIs for working with a wide range of file formats, including EML and PS. With Aspose.Total for .NET, you can easily convert EML to PS in just a few steps.
C# API to Convert EML to PS
- Open EML file using MailMessage class
- Convert EML to HTML by using Save method
- Load HTML by using Document class
- Save the document to PS format using Save method and set Ps as SaveFormat
Conversion Requirements
Install from command line as nuget install Aspose.Total
or via Package Manager Console of Visual Studio with Install-Package Aspose.Total
.
Alternatively, get the offline MSI installer or DLLs in a ZIP file from downloads .
MailMessage message = MailMessage.Load("sourceFile.eml");
// save EML as a HTML
message.Save("HtmlOutput.html", SaveOptions.DefaultHtml);
// load HTML with an instance of Document
Document document = new Document("HtmlOutput.html");
// call save method while passing SaveFormat.Ps
document.Save("output.ps", SaveFormat.Ps);
Parse EML File via .NET
Before converting EML to PS, if you want to make sure that you are converting the correct email, you can load EML document, parse it and have a look at your desired property. By using MapiMessage class of Aspose.Email for .NET API, you can get sender and recipients information. For example, you can check for a specific sender email for the conversion by using SenderName property.
var outlookMessageFile = MapiMessage.FromFile("message.eml");
// check for SenderName
if(outlookMessageFile.SenderName == "John"){
//proceed with conversion process
}
Restrict PS Document Editing via .NET
While saving the document from EML to PS, you might need to protect your output document. Sometimes you may need to limit the ability to edit a document and only allow certain actions with it. This can be useful to prevent other people from editing sensitive and confidential information in your document. Aspose.Words for .NET API, enables you to control the way you restrict the content using the ProtectionType enumeration parameter. You can set your document to read-only by using the following lines of code.
Document document = new Document("HtmlOutput.html");
// apply document protection and set protection password
doc.Protect(ProtectionType.ReadOnly, "password");
// call save method while passing SaveFormat.Ps
document.Save("output.ps", SaveFormat.Ps);