I have see my php.ini and i fill with my stmp server in my network....
but still i can't...
which stmp server should i add it.
in my network, there are smtp server....but i not the server....

note : i have add to php.ini my smtp server is mail.pesat.net.id
but still not working...
can any one help me...?

----- Original Message -----
From: Ivan Balazs <[EMAIL PROTECTED]>
To: php <[EMAIL PROTECTED]>
Cc: Php Mailing List <[EMAIL PROTECTED]>
Sent: Wednesday, July 04, 2001 6:52 PM
Subject: Re: [PHP] mail problem...


> 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