Hi bresolin,
before callng the Message.ToEml method, please consider downloading the message completely:
Pavel
before callng the Message.ToEml method, please consider downloading the message completely:
message.Download(MessageFetchMode.Full, true);
var eml = message.ToEml();
however, a better way is:var eml = message.DownloadRawMessage();
Best regards,Pavel