Re: [PHP] no one can find solution to my problem??

2002-01-08 Thread Richard Baskett
Well it looks to me that your headers variable is an array and that isnt really going to work with the mail function unless you arraywalk it. Hopefully that helps, since it's the only thing I can think of ?php /* recipients */ $to = Mary [EMAIL PROTECTED] ; /* subject */ $subject =

RE: [PHP] no one can find solution to my problem??

2002-01-08 Thread Jon Haworth
$headers .= Cc: [EMAIL PROTECTED]\r\n; $headers .= Bcc: [EMAIL PROTECTED]\r\n; $headers['User']='bankem'; $headers['Password']='narayana'; /* and now mail it */ mail($to, $subject, $message, $headers); ? Warning: Server Error in c:\www/email1.php on line 45 You do not need to

Re: [PHP] no one can find solution to my problem??

2002-01-08 Thread Balaji Ankem
to mailto:[EMAIL PROTECTED]. I don't know what z happening.. Thanks in advance. -Balaji - Original Message - From: Jon Haworth [EMAIL PROTECTED] To: 'Balaji Ankem' [EMAIL PROTECTED] Sent: Tuesday, January 08, 2002 3:35 PM Subject: RE: [PHP] no one can find solution to my problem?? How have