Warning: mail() [function.mail]: Failed to connect to mailserver at "123.236.152.104" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in G:\NARESH\PROJECT IMPOSSIBLE\xampplite-win32-1.7.0\xampplite\htdocs\email\register.php on line 420
I'm unable to connect to mailserver in my system using php.
I'm using xampp lite 5.2.8.
Can you solve me the problem for this.
Here is my code...
<?php
ini_set(SMTP, "ip.ip.ip.ip");
ini_set(smtp_port, 25 );
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: www.mysite.com' . "\r\n";
$email = $_POST['email'];
if ($email != "") {
$sendto = "my_email@yahoo.co.in";
$subject = "Email from www.mysite.com!";
$message = "This is a message from your site
Email: $email
Message: Thank you for registering in our site";
mail("$sendto", "$subject", "$message","$headers");
echo "Your message was sent";
}
?>