I get this error when I want to send email but I don’t know how i deal with it
Warning: mail() [function.mail]: Failed to connect to mailserver at “localhost” port 25, verify your “SMTP” and “smtp_port” setting in php.ini or use ini_set() in C:\wamp\www\send_email.php on line 8
error
<?php
$to="????";
$subject="mail test at ".strftime("%T",time());
$message="this is atest.";
$message=wordwrap($message,70);
$from="?????";
$headers="From:{$from}";
$result=mail($to,$subject,$message,$headers);
echo $result ? 'sent':'error';
?>
thanks in advance