When I send a message using the mail command in PHP some e-mail
addresses somehow put two returns in place of one return, so this:
$message = "Test
Test2"
becomes
Test
Test2
But if I mail this:
$message = "Test \n Test2"
it works the same for all e-mail addresses. Why is it doing this? I use
Red Hat Linux and Apache.
addresses somehow put two returns in place of one return, so this:
$message = "Test
Test2"
becomes
Test
Test2
But if I mail this:
$message = "Test \n Test2"
it works the same for all e-mail addresses. Why is it doing this? I use
Red Hat Linux and Apache.
Comment