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);
As a result, the dialog shows an empty login identifier. I tried typing EntryID in different places, but this is always an empty string. What am I doing wrong?
source
share