From: [EMAIL PROTECTED] Operating system: FreeBSD 4.1-RELEASE i386 PHP version: 4.0.6 PHP Bug Type: Mail related Bug description: Mail function always returns false
This is to confirm the bug reported in Bug ID #14032 PHP Apache Module Versions 4.0.4, 4.0.6 FreeBSD 4.1 Installed on a virtual server at Verio The script below runs fine on my WinNT/IIS development server running PHP 4.0.4 as a CGI module. On the FreeBSD virtual server, the same script always returns false, even though the mail message has been sent successfully. Could it be a problem with how sendmail running on FreeBSD is responding (or not responding) to the mail() function? =============================== <?php error_reporting(E_ALL); $mail_to = '[EMAIL PROTECTED]'; $mail_subject = 'Test Email'; $mail_message = 'This is a test'; $mail_headers = "From:[EMAIL PROTECTED]\nReply-To:[EMAIL PROTECTED]\n"; $sent = TRUE; $sent = mail($mail_to,$mail_subject,$mail_message,$mail_headers); if ( $sent == TRUE ) print("Mail sent successfully"); else print("Mail was not sent"); ?> -- Edit bug report at: http://bugs.php.net/?id=14535&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]