Buenas, mi nombre es Fernando., y ando en busca de vuestra ayuda.
estoy haciendo esta pagina web : [URL="http://www.hoysale.com"]http://www.hoysale.com[/URL] la cual es de anuncios clasificados.
tengo el siguiente inconveniente : cuando los usuarios comentan una publicacion por ejemplo :[URL="http://www.hoysale.com/detalles.php?ver=1#.UaYEm9jPbIX"]http://www.hoysale.com/detalles.php?ver=1#.UaYEm9jPbIX[/URL] , he logrado que se envien los mensajes correctamente a la misma pagina : [URL="http://www.hoysale.com/mensajes.php#.UaYFxdjPbIU"]http://www.hoysale.com/mensajes.php#.UaYFxdjPbIU[/URL] , pero no eh logrado conseguir que se le pueda avisar al usuario a su mail que tiene un nuevo comentario..
tengo este script :
Código PHP:
Ver original<?php
require_once('PHPMailer_v5.1/class.phpmailer.php');
require_once('PHPMailer_v5.1/class.smtp.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
$mail = new PHPMailer(true); // the true param means it will throw exceptions on errors, which we need to catch
$mail->IsSMTP(); // telling the class to use SMTP
try {
$mail->Host = "smtp"; // SMTP server
$mail->SMTPDebug = 2; // enables SMTP debug information (for testing)
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp"; // sets GMAIL as the SMTP server
$mail->Port = 25; // set the SMTP port for the GMAIL server
$mail->Password = "xxxxxxx"; // GMAIL password
$mail->Subject = 'Haz recibido un mensaje nuevo.';
$mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically
$mail->MsgHTML('$mensaje');
$mail->AddAttachment('PHPMailer_v5.1/examples/images/phpmailer.gif'); // attachment
$mail->AddAttachment('PHPMailer_v5.1/examples/images/phpmailer_mini.gif'); // attachment
$mail->Send();
echo "Mensaje enviado </p>\n";
} catch (phpmailerException $e) {
echo $e->errorMessage(); //Pretty error messages from PHPMailer
} catch (Exception $e) {
echo $e->getMessage(); //Boring error messages from anything else!
}
?>
si alguien me puede orientar o ayudar muy agradecido