I have a small mail form I am working on. I want it to send the text entered by the person sending the email with the line breaks in, but so far they aren't showing up.
I understood that if I used the wrap="physical" in my HTML description of the field it would pass the line feed through. Like so:
Code:
<textarea cols="60" rows="10" name="message" wrap="physical">Enter your message here</textarea>
Right now, it still passes through as a single line.

Is there something I can do on the receiving end to make the line feeds show?