Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/04/2012, 06:03
Avatar de FerraN10
FerraN10
 
Fecha de Ingreso: junio-2011
Ubicación: Sant Joan Despí
Mensajes: 79
Antigüedad: 13 años, 9 meses
Puntos: 3
Mensaje Enviar correo

Buenas a todos , espero que alguien me pueda ayudar ya que llevo toda la mañana perdida y no me funciona... nada... estoy intentando hacer que me envie un correo a una cuenta de gmail y nada 0.


Me he bajado php_PHPMailer_5.2.1 y bueno en la carpeta razir lo he copiado llamada phpmailer

Una vez hecho todo esto como sale en todos los tutoriales que salen en Google.Cosa que me lo he repasado de arriba abajo... he configurado todo normal y me sigue saliendo el error siguiente:

Mailer Error: The following From address failed: [email protected]



Mi Pagina email.php :

<?
// example on using PHPMailer with GMAIL

include("phpmailer/class.phpmailer.php");
include("phpmailer/class.smtp.php"); // note, this is optional - gets called from main class if not already loaded

$mail = new PHPMailer();
$body="Cuerpo del correo";
//$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

$mail->Username = "[email protected]"; // GMAIL username
$mail->Password = "asdxasxw"; // GMAIL password

$mail->From = "[email protected]";
$mail->FromName = "Webmaster";
$mail->Subject = "This is the subject";
$mail->AltBody = "This is the body when user views in plain text format"; //Text Body
$mail->WordWrap = 50; // set word wrap

$mail->MsgHTML($body);

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

$mail->AddAttachment("/path/to/file.zip"); // attachment
$mail->AddAttachment("/path/to/image.jpg", "new.jpg"); // attachment

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

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

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

?>

He configurado el PHP.ini he quitado el comentario con openssl y sigue sin irme he ido quitando errores pero al final se me queda este y no paso de hay...

pd:me estoy volviendo loco help me graciass
__________________
El fin de mi tarea no fue el fin sino el trayecto
Si vivir es la odisea el horizonte que clarea
En esta aldea parece perfecto así que bienvenido lo que sea