Estoy haciendo mi página y tengo tres formularios. los envío mediante php y no me llegan al correo. Aquí les dejo el código html y php por si alguien me puede ayudar.
HTML:
<FORM ACTION="enviar.php" METHOD="POST" ENCTYPE="TEXT/PLAIN">
<div align="center"><strong>Datos Personales </strong><BR></div>
Nombre de Usuario: <BR>
<INPUT NAME="usuario" TYPE="text" class="img-border" size="48" maxlength="48">
<br>
Contraseña de Acceso: <BR>
<INPUT NAME="contrasena" TYPE="password" class="img-border" size="48" maxlength="48">
<br>
<div align="center"><strong>Datos de matriculación (facilitados por Grupo San Fernando) </strong><BR></div>
Usuario_matrícula: <BR>
<INPUT NAME="usuariomat" TYPE="text" class="img-border" size="48" maxlength="48">
<br>
Contraseña_matrícula: <BR>
<INPUT NAME="contrasenamat" TYPE="password" class="img-border" size="48" maxlength="48">
<br>
<div align="center"><strong>Documentación a aportar (adjuntar en formato PDF, Word o similar, JPG… según el caso).</strong><BR></div>
Justificación de transferencia de “Derechos de Inscripción”:<br>
<input type="file" name="datasize" size="30">
</p>
<div><br>
<br>
<div align="center">
<INPUT TYPE="submit" VALUE="Enviar datos" />
<INPUT TYPE="reset" VALUE="Borrar datos">
</FORM>
PHP:
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Documento sin título</title>
</head>
<body>
<?php
<?php
$usuario = $_POST['usuario'];
$contrasena = $_POST['contrasena'];
$usuariomat = $_POST['usuariomat'];
$contrasenamat = $_POST['contrasenamat'];
$header = 'From: ' . $email . " \r\n";
$header .= "X-Mailer: PHP/" . phpversion() . " \r\n";
$header .= "Mime-Version: 1.0 \r\n";
$header .= "Content-Type: text/plain";
$mensaje .= "Este mensaje fue enviado por " . $usuario . " \r\n";
$mensaje .= "Contraseña " . $contrasena . " \r\n";
$mensaje .= "Usuario de Matrícula: " . $usuariomat . " \r\n";
$mensaje .= "Contraseña de matrícula : " . $contrasenamat . " \r\n";
$para = '[email protected]';
$asunto = 'formulario matriculacion';
mail($para, $asunto, utf8_decode($mensaje), $header);
?>
</body>
</html>