I am setting up php mail sending script ...
When adding different headers, I came across a character for a new line in the letter (since the <br> tag will not do) ...
So my question is, what is the difference between \ r \ n and \ n \ n?
eg:
echo $var1 . " \r\n" . $var2 . "\n\n";
thank you for your help!
source
share