I encounter an error message when I click on my submit button.
The error is:
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\Duplicate of Edited Site\question.php on line 17
Line 17 contains the if statement, it is where the error was pinpointed:
if(!mail("little_saint1321@yahoo.com", "Inquiry", $message, "Cc: $email\r\n"))
{
echo"Sending failed.";
}
else
{
echo"Message sent.";
}
Help please.