Hola lady_vampiressa pues fijate q como te decia, subo exactamente los mismos archivos a 2 servidores distintos y en uno si me funciona y en el otro no, aqui te copio como los tengo, (esto va dentro del html donde se quiere colocar el formulario)
<form id="form1" name="form1" method="post" action="enviar.php">
<table width="85%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="32%" height="29" align="left" valign="top" scope="row"><label>Nombre:</label></th>
<td width="68%"><input name="Nombre" type="text" id="Nombre" size="30" /></td>
</tr>
<tr>
<th height="28" align="left" valign="top" scope="row">Empresa:</th>
<td><input name="Empresa" type="text" id="Empresa" size="30" /></td>
</tr>
<tr>
<th height="29" align="left" valign="top" scope="row">Telefono:</th>
<td><input name="Telefono" type="text" id="Telefono" size="30" /></td>
</tr>
<tr>
<th height="30" align="left" valign="top" scope="row"><label>E-mail:</label></th>
<td><input name="mail" type="text" id="mail" size="30" /></td>
</tr>
<tr>
<th align="left" valign="top" scope="row">Consulta</th>
<td><textarea name="consulta" id="consulta" cols="30" rows="3"></textarea></td>
</tr>
</table>
<div align="center">
<input type="submit" name="Submit" id="button" value="Enviar" />
</div>
</form>
Y lo siguiente va dentro de enviar.php que es al archivo que envia la informacion el formulario ...
<?
$nombre = $_POST['Nombre'];
$empresa = $_POST['Empresa'];
$telefono = $_POST['Telefono'];
$mail = $_POST['mail'];
$header = 'From: ' . $mail . " \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 " . $nombre . ", con numero de teléfono " . $telefono . " \r\n";
$mensaje .= "Su empresa: " . $empresa . " \r\n";
$mensaje .= "E-mail: " . $mail . " \r\n";
$mensaje .= "Mensaje: " . $_POST['consulta'] . " \r\n";
$mensaje .= "Enviado el " . date('d/m/Y', time());
$para = '
[email protected]';
$asunto = 'Contacto';
mail($para, $asunto, utf8_decode($mensaje), $header);
echo "Mensaje enviado correctamente";
?>
<script language="javascript">
function redirect()
{
document.location.href='contacto.html';
}
</script>
<html>
<head>
<title>Contactenos</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><style type="text/css">
<!--
body {
background-color: #FF9900;
}
.style1 {
color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
}
-->
</style></head>
<body onLoad="window.setTimeout(redirect(), 500000000);">
<h1 class="style1">El mensaje fue enviado. Una persona de nuestro equipo lo estará contactando.</h1>
</body>
</html>
Espero te funcione, o cualquier duda me cuentas.. Saludos..