Mando un e-mail con php mailer, anda todo bien, lo que no se hacer es que le llegue a la persona que lleno el formulario de "contacto", un mensaje por ejemplo, "en 5 minutos le contestaremos... algo asi"... pero en cambio le llega todo el cuerpo del mensaje..."
aca esta el codigo PHP
Código PHP:
Ver original
<?php require("class.phpmailer.php"); require("class.smtp.php"); $fnombre=$_POST['nombre']; $femail=$_POST['email']; $ftelcel=$_POST['telcel']; //$ip = $REMOTE_ADDR ; //$asunto = "Mensaje"; //$msje = ""; $mail = new PHPMailer(); $mail->IsSMTP(); // set mailer to $mail->Host = "www.ejemplo.com"; // specify main and backup server $mail->SMTPAuth = true; // turn on SMTP authentication $mail->Password = "de4569de"; // SMTP password $mail->AddReplyTo("[email protected]", "Ale"); // CUANDO SE RESPONDE VA A ESTE EMAIL QUE PONEMOS ACA $mail->IsHTML(true); // set email $mail->Subject = "Ale"; $mail->Body ="<br> <FONT FACE='arial'> <br> --------- Mensaje ----------<br> <br> <b>Nombre y Apellido</b> : $fnombre<br> <b>E-mail</b> : $femail<br> <b>Telefono /Cel / </b> : $ftelcel<br> <b>Consulta </b> : $fmensaje<br> <br> -------------------------------------------------------<br> Fecha de envio de email : $dia<br> --------------------------------------------------------<br> <br>" ; $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 "Message has been sent"; ?>
Desde ya muchas gracias a todos,!!!
Saludos fede