Hello Team,
I've been using Aspose.Email latest version 16.12.0.0 and got an issue that if an eml file contains attachment such as .eml it change it to msg(not just extension but also its format).
I've attached the eml sample too, please use the following code :
class Program
{
static void Main(string[] args)
{
MailMessage f_Objmailmessage = null;
MapiMessage f_mapimessage = null;
try
{
string f_tmpEmlPath = "C:\\Different fields.eml";
f_Objmailmessage = MailMessage.Load(f_tmpEmlPath, new EmlLoadOptions());
f_mapimessage = MapiMessage.FromMailMessage(f_Objmailmessage, MapiConversionOptions.UnicodeFormat);
}
catch (Exception ex)
{
}
}
}
After loading into mapi message it show that the attachment of eml has change to msg, that is very inappropriate.
Can you please take this issue into account and resolve this on high priority as we are already behind our schedule and i'm facing too many issue with Aspose.
Hoping this to be get done by today.
Thank You.
Regards,
Amit