Open the special email in your Blackberry email application.

I am trying to get a Blackberry message on a topic and open it in my default email application. I still have this:

Store store = Session.waitForDefaultSession().getStore(); Folder folder = store.getFolder("Inbox"); Message[] msgs = folder.getMessages(); Message msg = msgs[0]; 

But how can I open a message when I have a handle?

+6
source share
2 answers

This is not yet supported by the BlackBerry API. You will need to write your own custom email viewer.

The BlackBerry API only supports an email application for writing a new message. See this thread or this for more details. The best thing you can do is post your question on the RIM forums so that they see the need for it.

+2
source

This is supported.

 Invoke.invokeApplication(Invoke.APP_TYPE_MESSAGES, new MessageArguments(message)); 

message Message class.

0
source

Source: https://habr.com/ru/post/887661/


All Articles