Hi,
I’m evaluating Aspose.Email version 19.7.0, installed with nuget on visual studio 2017.
I need to convert signed messages (.msg format) extracted from PST to eml format.
When I try to save signed msg to eml, signature is preserved but subject is lost!
This is my code:
MailMessage mailMessage22 = MailMessage.Load(msgPath);
EmlSaveOptions options = new EmlSaveOptions(MailMessageSaveType.EmlFormat);
options.PreserveSignedContent = true;
mailMessage22.Save(outPath, options);
this msg file I’ve tryied to convert