Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/03/2016, 16:59
cachumba40
 
Fecha de Ingreso: marzo-2016
Mensajes: 2
Antigüedad: 8 años, 10 meses
Puntos: 0
Respuesta: Problema con formulario

Hola Oggy
probe agregandole name pero no puedo hacerlo funcionar. Al presonar Submit me aparece el mensaje de que ha sido enviado pero no me llega el form a la direccion de contacto y mucho menos el contenido. Ademas lo configure con php mailer. Alguien podría revisar?
aca el form reformado

<div class="contact" id="contact">
<div class="container">

<h3>Contacto</h3>
<div class="heading-underline"></div>

<form class="contact_form slideanim" method="post" action="mail.php">



<div class="message">
<div class="col-md-6 col-sm-6 grid_6 c1">
<input type="text" class="text" name="Nombre" value="Nombre" placeholder="Nombre" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Nombre';}">
<input type="text" class="text" name= "Email" value="Email" placeholder="Email" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Email';}">
<input type="text" class="text" name= "Telefono" value="Telefono" placeholder="Telefono" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Telefono';}">
</div>

<div class="col-md-6 col-sm-6 grid_6 c1">
<textarea class="text" name= "Mensaje" placeholder="Mensaje" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Mensaje';}">Mensaje</textarea>
</div>
<div class="clearfix"></div>
</div>

<input type="submit" class="more_btn" value="Enviar Mensaje">
</form>

</div>
</div>

y aca el mail PHP

<?php
require("class.phpmailer.php"); //Importamos la función PHP class.phpmailer

$mail = new PHPMailer();
$mail->SMTPDebug = true;

$mail->IsSMTP();
$mail->SMTPAuth = true; // True para que verifique autentificación de la cuenta o de lo contrario False
$mail->Host = "smtp.XXXXXXX.XXXX.XX";
$mail->Username = "[email protected]";
$mail->Password = "XXXXX";
$mail->Port = 25;

$Nombre = isset($_POST['Nombre']) ? $_POST['Nombre'] : '';
$Email = isset($_POST['Email']) ? $_POST['Email'] : '';
$Telefono = isset($_POST['Telefono']) ? $_POST['Telefono'] : '';
$Mensaje = isset($_POST['Mensaje']) ? $_POST['Mensaje'] : '';
$Formcontent = isset($_POST['Formcontent']) ? $_POST['From: $Nombre \n Mensaje: $Mensaje'] : '';
$mailheader = isset($_POST['mailheader']) ? $_POST['From: $Email \r\n Telefono: $Telefono' ] : '' ;
$recipient = "[email protected]";
$subject = "XXX - XXXX";
mail($recipient, $subject, $Formcontent, $mailheader) or die("Error!");
echo "Gracias!a la brevedad estaremos contactandonos con ud.";
?>