En un script sencillo de prueba de la función mail(), tengo este fallo:
Warning: 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:\appserv\www\miprueba\zpruebamail1.php on line 2
El script es este:
<?
mail("[email protected]","asuntillo","Mail de prueba");
?>
Tengo AppServ instalado, con Apache y PHP (winXP)
En el php.ini he puesto los siguientes valores a estas variables:
SMTP = "localhost"
smtp_port = "25"
¿Dónde puede estar el fallo?
Muchas gracias!!!