iam getting this warning when iam submiting my form
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\project\post3.php on line 40
Message delivery failed...
and my code is
$to = "hema@gmail.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
if (mail($to, $subject, $body)) {
echo("<p>Message successfully sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
exit();
}
acually i got this code from google,if ur having the better one please help me
Bookmarks