邮件发送:
$message = "Email:".$email."\r\n".。。
$headers = "From: $fromEmail"."\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
mail($to,$subject,$message,$headers);
原来邮件发送出现中文都是乱码,加上这个headers后,就好了,但是换行却没有效果了
用br肯定是不行的...请问怎么办?