El error que me da es el siguiente:
Mailer Error: SMTP Error: Could not connect to SMTP host.
No pongo todo el código porque dudo que sea problema del código, tendrá que ver con el php.ini o con el firewall ¿no? pero bueno, aquí va lo más relevante:
Código PHP:
...
$mail->CharSet = "UTF-8"; //Habilito el uso de UTF-8
$mail->IsSMTP(); // telling the class to use SMTP
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port
$mail->Username = "$gmailid"; // GMAIL username
$mail->Password = "$gmailpass"; // GMAIL password
...
Código:
¿Debería usar esta función? ¿Alguien sabe cómo funciona técnicamente? (No me refiero a los comandos sino al funcionamiento) ¿Podría montar un servidor mail propio?[mail function] ; For Win32 only. ; http://php.net/smtp SMTP = localhost ; http://php.net/smtp-port smtp_port = 25
Por favor necesito que alguien me ayude con el PHPMailer, Gracias