$recipient="somebody <[email protected]>";
$subject="This is a test mail!";
$body="Test mail body here.";
$headers="From: test <[email protected]>";
mail($recipient,$subject,$body,$headers);服务器为Linux+Apache+PHP,邮件可以发送出去,但是都被认为是垃圾邮件(Yahoo Mail、Outlook等)。是要怎么配置服务器呢,还是在mail函数中加额外的参数?望高手指点。