* @param body the html message body
* @return the content of the html without tags
*/
public static String getText( String body)
{
HTMLParser parser = new HTMLParser(new StringReader(body));
StringBuffer text = new StringBuffer();
String line;
try
{
BufferedReader reader = new BufferedReader(parser.getReader());
while( (line = reader.readLine()) != null)
{
text.append(line + "\n");
}