I can't help you to any sample code, but dispaying email in j2me is not very straight forward. You'll have to implement that yourself anyway.
Try to find out how to retrieve an email from a POP3 of IMAP server, find out how an email is build-up, and then try to make some basic code for it to display the message.
Here is some info: http://en.wikipedia.org/wiki/Post_Office_Protocol
Using Mail4ME API, you can check the MIME type and reject those that are not plain text. For an example, this article might help: http://www.ddj.com/dept/architect/184405073. I'm not sure if the example from the mentioned article takes into account the text part of the message in there are also non-text parts, or just rejects everything.
Mihai
> Using Mail4ME API, you can check the MIME type and
> reject those that are not plain text. For an example,
> this article might help:
> http://www.ddj.com/dept/architect/184405073. I'm not
> sure if the example from the mentioned article takes
> into account the text part of the message in there
> are also non-text parts, or just rejects everything.
>
> Mihai
Thanks for the information!!! It brought up our spirits to continue our project!!!