this is my error when i try to send email in php?

kiran

New member
Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" ...

and my program is:
<?php
$to = '[email protected]';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: [email protected]' . "\r\n" .
'Reply-To: [email protected]' . "\r\n" .
'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?>

plz tell me where to change default setting...
 
Okay Kiran
Whilst in your e-mail window, Left click (on the top tool bar) “Tools” on the drop down left click “Account Settings” Highlight (Left click on the address line) your e-mail address and then just above that you’ll see “Repair” click that.......
 
Back
Top