Example, instead of:

writer.write("<br>Foo</br>");

do the following
writer.beginElement("br", null);
writer.write("Foo");
writer.endElement("br");


well, it was only a snippet modified in the mail editor --and as usually one introduces errors at those occasions ;-) i assure that i am using begin/endElement for tags, it should only show that i do writing of html tags ...

Reply via email to