I am using OS X v10.3.2 and just discovered that I can't send mail using the mail() function.
According to phpinfo(), PHP is configured with sendmail.
Before upgrading to v10.3, I did not check if the mail() function worked in v10.2
The script I'm using does work on other servers.
<? $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ;
mail( "[EMAIL PROTECTED]", "Feedback Form Results", $message, "From: $email" ); header( "Location: thankyou.html" ); ?>
I ran Postfix Enabler and still could not email myself. What do I need to configure to get the mail() function to work? Thank you.
-Gohaku
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php