Hi!

It seems to be a php-specific problem. Check your php config file (in php4
it is php.ini). There you should find a line related to the smtp server.
Fill it with its correct content.

Balazs

On Wed, 4 Jul 2001, php wrote:

> hai...
>
> I have install php and i want to create email direct....
>
> but when i run my php...but i get error message
>
> Warning: Failed to Connect in e:/learn/php/mail.php on line 24
> email failed
>
> or i need to add object mail in php....
> anyone help me with this...
>
> my code like this...
> =================================================================================
>
>
>
> <html>
> <head>
> <title>Update User</title>
> </head>
> <body>
>
>
> <?php
>
> $applicant = "Hendra";
> $company = "PT. Sistem Intergra Indonesia";
> $phone = "324592";
>
> $to= "[EMAIL PROTECTED]";
> $subjek = "Testing php script";
> $header ="\nForm: hrd.co.id\n";
> $body = "\nName : " .quotemeta($application).
>  "\nCompany : " .quotemeta($company).
>  "\phone : " .quotemeta($phone);
>
> $success = mail($to, $subjek, $body, $header);
>
> if ($success)
> {
>  echo("email has been send");
> }else
> {
>  echo("email failed");
>
> }
>
> ?>
>
> </body>
> </html>
>
> ================================================================================
>
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to