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?
> Thanks for the help, Rodrigo
>
> <?php
>      $Destino = " <mailto:[EMAIL PROTECTED]> [EMAIL PROTECTED]";
>      $Remetente = "$name <$email>";
>      $Assunto = "Form Domain.com";
>      $Mensagem = $coments;
>      mail($Destino,"$Assunto",$Mensagem,"From:$Remetente\n");
>      header("Location:http://www.domain.com/success.htm";);
> ?>

Presumably you've echo($Mensagem) and it does contain something?

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *

/*
timesharing, n:
        An access method whereby one computer abuses many people.
*/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to