php-install | 2004112

Re: [PHP-INSTALL] Problem with Mail() function From: Hendrik Schmieder (hendrik.schmieder <email protected>)
Date: 11/30/04

chandrika raju schrieb:

>
> Hello Everybody,
>
>
> When I try to use mail() function it is not working.
> This is my program:
>
> <?php
> $to="ckp <email protected>";
> $from="me <email protected>";
> $message="Hai\nHow r u?";
> $subject="Hello";
>
> $success=mail($to, $subject, $message, "From:$from");
> if ($success)
> echo "Your mail has been sent";
> else
> echo "There is some error";
> ?>
>
> when I execute this, the output is
> There is some error.
>
> That means the mail is not sent.
> So some please help me in getting this. The to address wahtever I gave
> is a valid address
>
>
> It is urgent
> I thank u on beforehand
>
> Please reply soon

You can try

...
$headers = "From: " . $from . "\r\n";
$success=mail($to, $subject, $message, $headers);
...

   Hendrik