I have a text files that need to be word wrapped neatly so they can be turned into emails. They consist of:<br><br>Dear (or Hello) Jim,<br><br>Nice meeting with you on Thursday.  Blah <br>blah, blah.<br>blah, blah, blah,<br>
<br>Thanks,<br><br>Richard<br><br>Text::Wrap does a great job in breaking up and wrapping the lines my problem is that since it removes all the "\n" s <br>I end up with:<br><br>Dear Jim, Nice meeting with you on Thursday.  Blah <br>

blah, blah.<br>
blah, blah, blah, Thanks,
Richard<br><br>To counter this I began writing various conditionals that try to guess the first and last lines of the file so that they can be preserved separately and added after Text::Wrap has done it's work.  However, it's very convoluted and I am not so confident it will work.  So I am wondering if anyone know of a better way to accomplish the task?<br>
<br>Thanks,<br><br>Richard<br>