Rectifico el codigo.
Código PHP:
require_once("PHPmailer/class.phpmailer.php");
require_once("PHPmailer/class.smtp.php");
$correo_destino="[email protected]";
$nombre_destino="nombre";
$correo_emisor="[email protected]";
$nombre_emisor="[email protected]";
$contrasena="****";
$mail = new PHPMailer();
$mail->Host = "smtp.gmail.com";
$mail->Port = 465;
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->Username = $correo_emisor;
$mail->Password = $contrasena;
$mail->From = $correo_emisor;
$mail->FromName = $nombre_emisor;
$mail->AddAddress($correo_destino,$nombre_destino);
$mail->AddReplyTo($correo_emisor,$nombre_emisor);
$mail->WordWrap = 50;
$mail->IsHTML(true);
$mail->Subject = "titulo";
$mail->Body = 'contenido html';
$mail->AltBody = "contenido en texto plano";
if(!$mail->Send()){
echo "Error: " . $mail->ErrorInfo;
}else{
echo "Correoenviado;
}
ahora no da error, pero no hace nada...