Issue Saving Email To Pdf

Cannot save properly the following file to PDF:
https://www.dropbox.com/s/9owfisj9k0pxqns/Great%20deals!.msg?dl=0

This is the output for the operation:

As you can see some extraneous html is at the top of the PDF

This is the code to reproduce the problem:

    string filename = @"C:\disco\Great deals!.msg";
    MailMessage eml = MailMessage.Load(filename);
    MemoryStream memoryStream = new MemoryStream();
    eml.Save(memoryStream, SaveOptions.DefaultMhtml);
    var document = new Document(memoryStream, new Aspose.Words.LoadOptions { LoadFormat = LoadFormat.Mhtml });
    document.Save(filename +".Pdf", SaveFormat.Pdf);
1 Like

@PeteLee,

We were able to reproduce the issue that you reported. We have logged a ticket in our issue tracking system as EMAILNET-39168 to investigate it further. We will update you here as soon as additional information is available.

The issues you have found earlier (filed as EMAILNET-39168) have been fixed in this update. This message was posted using BugNotificationTool from Downloads module by MuzammilKhan

Hello thanks for fixing part of the problem, but we have a variant where we save the Email
as a PDF with no headers and we still have the extraneous HTML included in the PDF in that case.

Please see below a snipped to reproduce the problem

        string filename = @"C:\disco\Great deals!.msg";
        MailMessage eml = MailMessage.Load(filename);
        MemoryStream memoryStream = new MemoryStream();
        **eml.Save(memoryStream, new MhtSaveOptions() {MhtFormatOptions = MhtFormatOptions.None});**
        var document = new Aspose.Words.Document(memoryStream, new Aspose.Words.LoadOptions { LoadFormat = Aspose.Words.LoadFormat.Mhtml });
        document.Save(filename + ".Pdf", Aspose.Words.SaveFormat.Pdf);

@PeteLee,

Thank you for your feedback.
We were able to reproduce the issue that you reported. We have logged the details against the ticket EMAILNET-39168 for further investigation. We will update you here as soon as additional information is available.

Hello,
wanted to ask if there was any update on this issue.
The follow-up issue was logged on a closed issue, so I am not sure if I will get notification when the problem will be resolved

1 Like

@PeteLee,

I regret to share that at present there are no updates available for the status of the issue. We request for your patience and will get back to you with feedback as soon as possible.