I am trying to open an existing message from my application so that my own mail client can display the contents of the message, but I cannot find a way to do this. I found a way to open a newly created message with
Invoke.invokeApplication(Invoke.APP_TYPE_MESSAGE, new MessageArguments (MessageArguments.ARG_NEW, "to", "subject", "body"));
But trying to open an existing message throws an ObjectGroupReadOnlyException.
So how can I do this? Any suggestions?
source share