OFT, PRIZM conversion to pdf

Is Aspose supports OFT, PRIZM extension for converting into pdf.
Can we use Aspose.pdf for this type of file conversion?

@sranjan50

You can use Aspose.Email and Aspose.Words to convert OFT to PDF as shown below.

// load the OFT file using Aspose.Email
var message = Aspose.Email.MailMessage.Load("My File.oft");
// save OFT as a MHTML 
message.Save("Saved File.mhtml", Aspose.Email.SaveOptions.DefaultMhtml);

//Load the MHTML using Aspose.Words
Document _document = new Document("Saved File.mhtml");
//Save the document to PDF
_document.Save("output.pdf");

Unfortunately, Aspose products do not support PRIZM file format. Could you please ZIP and attach your input PRIZM file and expected output PDF? We will then log new feature request for respective product.