Im setting up a web form, and I’m trying to have it where visitors can paste their resumes into a text area. Then I want to email the info using php mail().
But the resume info is just stored in the variable as one long string with no formatting.
Is there a way I can send the pasted resume text to the client in the resume format? Maintaining all the line breaks and stuff?
He wants to avoid having people upload resumes.
A tinymce-like editor would be good stuff.
The simplest and fastest, though, would be to use things like http://php.net/manual/en/function.nl2br.php to keep the line breaks. It should do regarding that.