I've seen a lot of examples using the php mail function. Some of them use as line break for the header, some use .
$headers = "From: Just Me
";
$headers .= "Reply-To: Just me <$email>
";
vs
$headers = "From: Just Me
";
$headers .= "Reply-To: Just me <$email>
";
which one is correct?
Sometimes I've had cases where is used and part of the header is interpreted by some email clients as mail text (losing these header information) - is this because is wrong?
See Question&Answers more detail:os