Los correos me llevan sin remitente y sin el contenido del formulario
CODIGO HTML
Código HTML :
<form name="form1" method="post" action="send.php"> <table width="691" border="0"> <tr> <td height="27" colspan="4"><strong>Solicitud inscripción para matricula</strong></td> </tr> <tr> <td width="186"><label for="textfield2">Nombre apoderado</label></td> <td width="487" colspan="3"><input name="textfield" type="text" id="textfield2" size="50"></td> </tr> <tr> <td height="17">Mail</td> <td colspan="3"><input name="textfield2" type="text" id="textfield4" size="50"></td> </tr> <tr> <td height="19"><label for="textfield14">Cedula identidad</label></td> <td colspan="3"><input name="textfield3" type="text" id="textfield5" size="50"></td> </tr> <tr> <td height="22"><label for="textarea">Mensaje</label></td> <td colspan="3"><textarea name="textarea" id="textarea"></textarea></td> </tr> <tr> </tr> <tr> <td><p> </p></td> <td colspan="3" align="left" valign="top"><input type="submit" name="button" id="button" value="Enviar"></td> </tr> </table> </form>
CODIGO PHP
Código PHP :
<?php $nombre_apoderado = $_POST['nombre']; $mail = $_POST['mail']; $cedula_identidad = $_POST['cedula identidad']; $mensaje = $_POST['mensaje']; // Definir el correo de destino: $dest = "[email protected]"; // Estas son cabeceras que se usan para evitar que el correo llegue a SPAM: $headers = "From: $nombre $email\r\n"; $headers .= "X-Mailer: PHP5\n"; $headers .= 'MIME-Version: 1.0' . "\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; // Aqui definimos el asunto y armamos el cuerpo del mensaje $asunto = "$Contacto desde sitio web, para inscripción matriculas"; $cuerpo = "<strong>Nombre del apoderado:</strong> ".$nombre_apoderado."<br>"; $cuerpo .= "<strong>Mail:</strong> ".$mail."<br>"; $cuerpo .= "<strong>cedula identidad:</strong> ".$cedula_identidad."<br>"; $cuerpo .= "<strong>Mensaje:</strong> ".$mensaje; mail($dest,$asunto,$cuerpo,$headers); //ENVIAR! echo 'Responderemos su mail a la brevedad, gracias por preferirnos'; ?>