Necesito un gran ayuda es lo único q me falta para colgar mi pagina
Estoy haciendo el formulario pero no me sale, alguien me puede decir en q estoy fallando
este es el codigo del formulario en html
<form id="form1" name="form1" method="post" action="enviar.php">
<table width="548" border="0">
<tr>
<td width="542"><table width="548" border="0">
<tr>
<td width="262" align="right" class="Estilo11">Company / Personal Name:</td>
<td width="276" align="left"><label>
<input name="nombre" type="text" id="nombre" size="40" />
</label></td>
</tr>
<tr>
<td align="right" class="Estilo11">Date of Enquiry:</td>
<td align="left"><label>
<input name="mensaje" type="text" id="mensaje" size="40" />
</label></td>
</tr>
<tr>
<td align="right" class="Estilo11">Email:</td>
<td align="left"><label>
<input name="email" type="text" id="email" size="40" />
</label></td>
</tr>
<tr>
<td align="right" class="Estilo11">Contact Number:</td>
<td align="left"><label>
<input name="telefono" type="text" id="telefono" size="40" />
</label></td>
</tr>
<tr>
<td colspan="2" align="center" bgcolor="#CCCCCC"><span class="Estilo6">PLEASE TICK BELOW IF IT’S FOR</span></td>
</tr>
<tr>
<td align="right" class="Estilo11">Event</td>
<td align="left"><label>
<input type="radio" name="evento" id="radio" value="radio" />
</label></td>
</tr>
<tr>
<td align="right" class="Estilo11">Accommodation </td>
<td align="left"><label>
<input type="radio" name="accommodation" id="radio2" value="radio2" />
</label></td>
</tr>
<tr>
<td align="right" class="Estilo11">Meeting / Conference</td>
<td align="left"><label>
<input type="radio" name="meeting" id="radio3" value="radio3" />
</label></td>
</tr>
<tr>
<td align="right" valign="top" class="Estilo11">Other </td>
<td align="left"><label>
<textarea name="other" id="other" cols="40" rows="5"></textarea>
</label></td>
</tr>
<tr>
<td height="21" align="right"> </td>
<td align="left"><table width="279" border="0">
<tr>
<td><label>
<input name="enviar" type="submit" id="enviar" onclick="MM_validateForm('nombre','','R','datos',' ','R','mail','','RisEmail','numero','','RisNum');r eturn document.MM_returnValue" value="send" />
<input type="reset" name="borrar" id="borrar" value="delete" />
</label></td>
</tr>
<tr>
<td><p class="Estilo10"><br />
We will contact you shortly to further discuss your request</p>
<p align="center" class="Estilo10">Thank you for your time!</p></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</form>
y este es el del php
<?php
$mail='[email protected]';
$nombre = $_POST['nombre'];
$telefono = $_POST['telefono'];
$email = $_POST['email'];
$mensaje = $_POST['mensaje'];
$thank="gracias.html";
$message = "
nombre:".$nombre."
telefono:".$telefono."
email:".$email."
mensaje:".$mensaje."";
if (mail($mail,"Formulario de Consulta",$message))
Header ("Location: $thank");
?>
agradesco un pronta respuesta
gracias