Hi Team,
I am trying to convert .eml to .msg format and upload the .msg to our document management system(LiveLink).
When I download and save the file[ from(.eml)/to(.msg) ] in disk and upload to LiveLink it works fine but when I convert and save as stream no error from aspose but our document management system is unable to recognize the format .
Please refer to the below format [.net framework 4.5]
Stream stream = new MemoryStream(emailMsg.MimeContent.Content);
MemoryStream msgstream = new MemoryStream();
Aspose.Email.Mail.MailMessage objmessage = Aspose.Email.Mail.MailMessage.Load(stream, MailMessageLoadOptions.DefaultEml);
objmessage.Save(msgstream,MessageFormat.Msg );
Can you please check and revert to me what is the issue .