我已經安裝sendmail
我的Apache服務器(Ubuntu的)sendmail和PHP的mail() - 「沒有發現接受者」
一切似乎工作發現,除了一個電子郵件上,而使用PHP mail();
不beeing發送我得到了Apache的錯誤錯誤日誌說:
/usr/sbin目錄/ sendmail的:沒有發現接受者
這是我使用的功能的方式:
$user_email = "[email protected]";
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'To: ' . $user_email . "\r\n";
$headers .= 'From: Mydomain <[email protected]>' . "\r\n";
mail($user_email,"subject","message",$headers);
我很驚訝,這沒有拋出一個PHP錯誤TBH。 –
我也是。當我嘗試時出現分析錯誤。 – Barmar
對不起,這是一個錯誤,當我發佈的問題,$ user_email = [email protected]會引發PHP錯誤,真正的代碼當然是$ user_email =「[email protected]」; –