|
// multiple recipients
$to = '[email protected]' . ', '; // note the comma
$to .= '[email protected]';
// subject
$subject = 'Birthday Reminders for August';
// message
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
</tr>
<tr>
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
</tr>
</table>
</body>
</html>
';
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "/r/n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "/r/n";
// Additional headers
$headers .= 'To: Mary <[email protected]>, Kelly <[email protected]>' . "/r/n";
$headers .= 'From: Birthday Reminder <[email protected]>' . "/r/n";
$headers .= 'Cc: [email protected]' . "/r/n";
$headers .= 'Bcc: [email protected]' . "/r/n";
// Mail it
mail($to, $subject, $message, $headers);
查看sendmail的maillog,發(fā)現(xiàn)奇怪的內(nèi)容。
復(fù)制代碼 代碼如下:
Mar 1 11:28:03 <a title="shaohui" target="_blank">shaohui</a>.org sendmail[27526]: n213S1Xc027524: to=<[email protected]>, ctladdr=<[email protected]> (500/500), delay=00:00:02, xdelay=00:00:01, mailer=esmtp, pri=150812, relay=163mx03.mxmail.NETease.com. [220.181.12.72], dsn=5.0.0, stat=Service unavailable
但是,如果我使用Linux Shell 的mail命令是可以發(fā)送成功的,不過多加了一條-f 參數(shù)偽造發(fā)件人。這是唯一的不同,于是maillog 的其中一個字段ctladdr顯示也不一樣。不再是apache用戶,我懷疑163等國內(nèi)的郵件服務(wù)提供商,把所有的apache的用戶的郵件當(dāng)成垃圾郵件處理掉了。
復(fù)制代碼 代碼如下:
Feb 25 23:44:59 <a title="shaohui" target="_blank">shaohui</a> sendmail[13067]: n1PFixH4013067: [email protected], [email protected] (0/0), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30869, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (n1PFixdx013068 Message accepted for delivery)
根源找到,于是問題就很好解決了,查一下php的手冊,發(fā)現(xiàn)mail函數(shù)原來也是可以偽造發(fā)件人的。
復(fù)制代碼 代碼如下:
bool mail ( string $to , string $subject , string $message [, string $additional_headers [, string $additional_parameters ]] )
在第六個參數(shù)additional_parameters使用額外的參數(shù)"-f [email protected]", 問題就解決了。
php技術(shù):解決163/sohu/sina不能夠收到PHP MAIL函數(shù)發(fā)出郵件的問題,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。