Re: How to read an attachment of an e-mail using javamail
Posted By:
amit_sutar
Posted On:
Monday, June 26, 2006 08:55 AM
Hi,
Try out
String temp = message.getContent();
if(temp!=null)
Multipart multipart = (Multipart)temp ;
to avoid No Content Exception
-amit