<?php
require("class.phpmailer.php");
//require("class.smtp.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = "223.159.1.201"; // specify main and backup server
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "OraDba"; // SMTP username
$mail->Password = "Xkdedl11"; // SMTP password
$mail->From = "[email protected]";
$mail->FromName = "Administrador WEB";
$mail->AddAddress("[email protected]", "Jose Luis");
$mail->AddReplyTo("[email protected]", "Information");
$mail->WordWrap = 50; // set word wrap to 50 characters
//$mail->AddAttachment("/var/tmp/file.tar.gz"); // add attachments
//$mail->AddAttachment("/tmp/image.jpg", "new.jpg"); // optional name
$mail->IsHTML(true); // set email format to HTML
$cCuenta = "44C231313121";
$mail->Subject = "Servidor WEB: Cuenta xxxx Activada";
$mail->Body = "<b>DATOS DE LA MODIFICACION</b><br><br>
<table border=\"1\">
<tr align=\"center\">
<td><strong>USUARIO</strong></td>
<td> </td>
<td height=\"25\" colspan=\"3\"><strong>DATOS ACTUALES</strong></td>
<td colspan=\"3\"><strong>DATOS MODIFICADOS</strong></td>
</tr>
<tr align=\"center\">
<td width=\"80\">Cuenta</td>
<td width=\"90\">Recorrido</td>
<td width=\"110\" colspan=\"2\">Ciclo facturacion</td>
<td><p>Medido/No medido<br />(Y/N)</p></td>
<td width=\"110\" colspan=\"2\">Ciclo facturacion</td>
<td><p>Medido/No medido<br />(Y/N)</p></td>
</tr>
<tr align=\"center\">
<td>$cCuenta</td>
<td>$cRecorrido</td>
<td>$cCstgrpnb</td>
<td>$cBlccl</td>
<td>$cMedido</td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<br>------------------------------------------------------------------------------------------<br><em>Este es un mensaje generado automáticamente por el servidor WEB.</em>";
$mail->AltBody = "This is the body in plain text for non-HTML mail clients";
if(!$mail->Send())
{
echo "Message could not be sent. <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
echo "Enviado el correo...";
?>
Ese es el codigo y me sale el error de que no PUEDE AUNTETIFICAR, NO ENTIENDO, TODO ESTA CORRECTO,,,,EL SERVIDOR ES OUTLOOK, QUE PODRA SER? SU AYUDA POR FAVOR.
SALUDOS CORDIALES