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

2002-01-08 Thread Balaji Ankem
?php /* recipients */$to = "Mary [EMAIL PROTECTED]" ; /* subject */$subject = "Birthday Reminder"; /* message */$message = 'htmlheadtitleBirthday Reminders for August/title/headbodypHere are the birthdays upcoming in August!/ptabletr thPerson/ththDay/ththMonth/ththYear/th/trtr

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

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

2002-01-08 Thread Balaji Ankem
- From: Jon Haworth [EMAIL PROTECTED] To: 'Balaji Ankem' [EMAIL PROTECTED] Sent: Tuesday, January 08, 2002 4:17 PM Subject: RE: [PHP] no one can find solution to my problem?? Do I get to see the class then? It's hard to see what this line is doing: $smtp_session = new Mail_smtp(array