I can't understand this line from the official documentation of mail function in PHP:
http://php.net/manual/en/function.mail.php
Each line should be separated with a LF (\n). Lines should not be larger than 70 characters.
Even more, in their example they recommens to do something like this:
// The message
$message = "Line 1\nLine 2\nLine 3";
// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70);
Why is that? and what happens with URLs for example? they are frequently much larger than 70 characters
What are the problems we could have if we don't do it?
Thanks!
mail()and work around many quirks that otherwise you'd have to face. – Maerlyn Jan 29 at 17:19