Hi Steve,
thanks for the information. But on this case it dosn't help. Maybe I have to explain exacter.
Somebody send an e-mail to an outlook inbox. In this e-mail there are some fomat infos (tables, colour letters, ...) and you can see the informations in outlook. But when I get the mails from the inbox over
java I will get a content-type for this mail text/plain. The content for this message is "instance of String". Thats all what I get. Here the code:
Folder folder = store.getFolder("INBOX");
folder.open(Folder.READ);
Message[] message = folder.getMessages();
{
Message m = message[i];
System.out.println("ContentType: " + m.getContentType());
if(m.getContent() instanceof
String)
{
// I always get instanceof String back
}
Do you know, whtats going wrong?
Thanks
Oli