Tengo el siguiente programa:
Código 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();
$check= mail($to, $subject, $message, $headers);
echo $check;
Cita:
El archivo php.ini está tal que así: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:\xampp\htdocs\pruebas\index.php on line 17
Código:
He probado a quitar y ponerle la primera comilla de la última línea del php.ini pero el error sigue siendo el mismo...[mail function] ; For Win32 only. ; http://php.net/smtp SMTP = localhost ; http://php.net/smtp-port smtp_port = 25 ; For Win32 only. ; http://php.net/sendmail-from ;sendmail_from = postmaster@localhost
Tengo el XAMPP instalado, con el Apache y el Mercury activos...
Cualquier ayudita sería bien recibida :)