On Feb 7, 2004, at 12:20 AM, John Nichel wrote:
Hi everyone,
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.
Make sure the path to sendmail is correct in your php.ini. Ensure that sendmail is installed.
Thank You. all I had to do was change one line in php.ini:
From
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path =
To
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path = sendmail -t -i
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php