contactanos.html
Código PHP:
<form action="enviado.php" method="post" name="contacto" id="contacto" "multipart/form-data">
<table width="380" border="0" align="center" cellpadding="5" cellspacing="2">
<tr>
<td width="118" class="Estilo2">Nombre y Apellidos:</td>
<td width="236"><input name="mnombre" type="text" class="Estilo2" id="mnombre" size="32" /></td>
</tr>
<tr>
<td class="Estilo2">Correo:</td>
<td><input name="mcorreo" type="text" class="Estilo2" id="mcorreo" size="32" /></td>
</tr>
<tr>
<td class="Estilo2">Telef y/o Movil:</td>
<td><input name="mtelef" type="text" class="Estilo2" id="mtelef" size="32" /> </td>
</tr>
<tr>
<td valign="top" class="Estilo2">Consulta:</td>
<td><textarea name="mconsulta" cols="35" rows="4" class="Estilo2" id="mconsulta"></textarea></td>
</tr>
<tr>
<td> </td>
<td><input name="Submit" type="submit" class="Estilo3" onclick="MM_validateForm('mnombre','','R','mcorreo','','RisEmail','mtelef','','R','mconsulta','','R');return document.MM_returnValue" value=" Enviar " /> </td>
</tr>
</table>
</form>
Código PHP:
<?php
$mnombre = $_POST["mnombre"];
$mcorreo = $_POST["mcorreo"];
$mtelef = $_POST["mtelef"];
$mconsulta = $_POST["mconsulta"];
$mensaje .="NOMBRE: $mnombre\n";
$mensaje .="TELF y/o Movil: $mtelef\n";
$mensaje .="CONSULTA: $mconsulta\n";
$masunto = 'Consulta';
$cabeceras = "From:<$mcorreo>\n";
$body_top = "--Message-Boundary\n";
$body_top .= "Content-type: text/plain;charset=US-ASCII\n";
$body_top .= "Content-transfer-encoding: 7BIT\n";
$body_top .= "Content-description: Mail messagebody\n\n";
$cuerpo = $mensaje;
$destino = "micorreo[arroba]midominio.com";
echo ("<center><b><font size='3' color='#999999' face='Trebuchet MS, Verdana'>");
if (mail($destino,$masunto,$cuerpo,$cabeceras))
{
echo ("Tu Mensaje fue enviado");
} else {
echo ("SE HA PRODUCIDO UN ERROR");
}
echo ("</center></font></b>");
?>