Re: [PHP] Message isn't received in form mailer

2002-05-04 Thread David Jackson
Jason -- This ain't pretty (and probly not even correct) but it works: David -- Mail Call PHP hello mail $From";print "\n"; echo $Two;print "\n"; echo $Subject;print"\n"; echo $Comments;print "\n"; ?> - Jason Won

RE: [PHP] Message isn't received in form mailer

2002-05-04 Thread John Holmes
> $Mensagem = $coments; Where is $coments coming from? Why do you assign a variable to a variable, without changing anything? ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Message isn't received in form mailer

2002-05-04 Thread Jason Wong
On Sunday 05 May 2002 00:39, Rodrigo wrote: > Hi guys, I'm trying to send the contents of a form thru the php script > under this message, but I'm not receiving the message itself, I just > receive the message in blank. Just with the subject and the from. > Does anybody know what the problem is? >