Hello:
I would like to have
<HTML><BODY><TABLE><TR><TD></TD></TR></TABLE></BODY></HTML>
into
<HTML>
<BODY>
<TABLE>
<TR>
<TD>
</TD>
</TR>
</TABLE>
<BODY>
<HTML>
I have a mail function that sends html code but then suddenly breaks because it's all on 1 line. How to I break that line?
I have used wordwrap and nl2br.
Thanks in advance for anyone who helps.