Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/05/2011, 03:12
Hircine
 
Fecha de Ingreso: diciembre-2010
Mensajes: 28
Antigüedad: 13 años, 4 meses
Puntos: 0
Php Mailer no conecta smtp

Hola,llevo varios dias buscando por Google y otros buscadores,por este foro, etc..
No he encontrado solución a mi problema,este es mi codigo:

Código PHP:
<?php

include("../class.phpmailer.php");
//include("../class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded

$mail             = new PHPMailer();

$body             $mail->getFile('contents.html');
$body             eregi_replace("[\]",'',$body);

$mail->IsSMTP();
$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 for the GMAIL server

$mail->Username   "[email protected]";  // GMAIL username
$mail->Password   "micontraseña";            // GMAIL password

$mail->AddReplyTo("[email protected]","First Last");

$mail->From       "[email protected]";
$mail->FromName   "First Last";

$mail->Subject    "PHPMailer Test Subject via gmail";

//$mail->Body       = "Hi,<br>This is the HTML BODY<br>";                      //HTML Body
$mail->AltBody    "To view the message, please use an HTML compatible email viewer!"// optional, comment out and test
$mail->WordWrap   50// set word wrap

$mail->MsgHTML($body);

$mail->AddAddress("[email protected]""John Doe");

$mail->AddAttachment("images/phpmailer.gif");             // attachment

$mail->IsHTML(true); // send as HTML

if(!$mail->Send()) {
  echo 
"Mailer Error: " $mail->ErrorInfo;
} else {
  echo 
"Message sent!";
}

?>