Using RDO 4.8.0.1184 with Delphi 2006 on Exchange 2007 SP3
I have the following code (abbreviated):
Msg := MailSession.GetMessageFromMsgFile(sTempFile, false);
Msg.UnRead := true;
Msg.Save;
Msg.Move(some_folder);
ShowMessage('EntryID: ' +Msg.EntryID);
The resulting dialogue shows an empty EntryID. I've tried printing the EntryID at various places but it is always an empty string. What am I doing wrong?