Re: [PHP] mail() not sending -- Little bit OT

2002-04-25 Thread Miguel Cruz
On Fri, 26 Apr 2002, David Redmond wrote: When attempting to send an email through a PHP script via Apache, no emails are sent. However if I use the standalone binary and run the same script but on the console then it works fine. Because of that I have a feeling that there is something in

Re: [PHP] mail() not sending -- Little bit OT

2002-04-25 Thread Justin French
Are you using headers in your mail script??? I'm no expert on sendmail at all, but your host may require the From: [EMAIL PROTECTED] header before it will send ? $to = [EMAIL PROTECTED]; $subject = test; $message = testing; $headers = From: [EMAIL PROTECTED];