我在php.ini配置正確,我想......如何測試sendmail/php不工作的原因?
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
sendmail_path = /usr/sbin/sendmail -t -i
PHP是一般工作的罰款。 phpinfo()看起來不錯。
我有我使用發送測試消息的腳本,它聲稱工作..
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);
$from = "[email protected]";
$to = "[email protected]";
$subject = "PHP Mail Test script";
$message = "This is a test to check the PHP Mail functionality";
$headers = "From:" . $from;
mail($to,$subject,$message, $headers);
echo "Test email sent";
?>
我總是得到一個消息,說:「測試郵件發送」
但在Gmail中什麼都沒有顯示出來?什麼給,我應該如何解決?
你實際上不會建立一個聲明來檢查它是否被髮送。你只是簡單地迴應'發送測試郵件'(順便說一句)。你應該爲它做一個if else語句。 – Dorvalla