Hi, I am a new user to PHP and Would like to use PHP to send mail.
I use the following script:
<?php
 $recipient = "[EMAIL PROTECTED]";
 $subject = "some subject";
 $mail_cont = "yea yea yea";
 $mail_headers = "From: our web site\n";

 if(mail($recipient,$subject,$mail_cont,$mail_headers))
  print("Success!");
 else
  print("Sorry, try again.");
?>

and I get

Warning: Unknown error in c:/easyphp/www/index3.php on line 7
Sorry, try again.

My php.ini file include:

[mail function]
SMTP=smtp.tele2.pl ;for win32 only
[EMAIL PROTECTED] ;for win32 only

Can u help?

THanx

Reply via email to