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
