Email File Conversion

need to convert msg to eml file

Hi Amit,

Thank you for considering Aspose.Email.

You can interconvert between different email formats using Aspose.Email with just a couple of lines of code. Please have a look at the following code sample for your kind reference. If you have any other query/inquiry related to Aspose.Email, please feel free to write to us on Aspose.Email forum.

Sample Code:

MailMessage msg = MailMessage.Load(“Sample.msg”, MessageFormat.Msg);
msg.Save("Sample.eml", MailMessageSaveType.EmlFormat);