Código PHP:
Ver original<?php
require_once('class.phpmailer.php');
function SendMail($Smail, $NombreUsuario, $Ssub, $SMensa) {
try {
$mail = new PHPMailer(true); //New instance, with exceptions enabled
$body = $SMensa;
$mail->IsSMTP(); // tell the class to use SMTP
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Port = 25; // set the SMTP server port
$mail->Host = "mail.exclusivehosting.net"; // SMTP server
$mail->Password = "password"; // SMTP server password
$mail->IsSendmail(); // tell the class to use Sendmail
$mail->FromName = "QiuBox Guatemala";
$to = $Smail;
$mail->AddAddress($to);
$mail->Subject = $Ssub;
$mail->AltBody = "Para ver este mensaje, usar compativilidad con HTML, Gracias!"; // optional, comment out and test
$mail->MsgHTML($body);
$mail->IsHTML(true); // send as HTML
$mail->Send();
return $e = 'Message has been sent.';
} catch (phpmailerException $e) {
return $e->errorMessage();
}
}
?>
ese es el codigo, y el problema es que cuando me lo mando a cuentas de mi server si llegan los correos pero cuando lo mando a gmail, hotmail o yahoo ya no llega nada, si me pudieran ayudar muy agradecido