[B]Hola a todos,
Estoy creando un formulario básico para mi web. Los campos son Nombre, email y mensaje. He creado por un lado el html con el formulario, por otro lado el php para el envío y un html más que indica q el mensaje se ha enviado. La idea es q cuando el usuario mande el mensaje, aparezca una página indicándole q el envío se realizó con éxito.
Pero al enviar el mensaje me sale este error:
Warning: mail() has been disabled for security reasons in /home/webcindario/i/n/inkpie/enviar.php on line 17
Les indico el código para que me indiquen el error. Soy novata así q sean buenos.
Gracias.
HTML:
//la parte del formulario//
<table width="87%" border="0" align="left" cellpadding="0" cellspacing="4"> <tr> <td><form name="form1" method="post" action="enviar.php">
<tr>
<td><div align="left" class="Estilo19">Nombre </div></td>
<td><div align="left">
<input type="text" name="nombre" size="20" maxlength="40" />
</div></td>
</tr>
<tr>
<td><div align="left" class="Estilo19">E-mail </div></td>
<td><div align="left">
<input type="text" name="email" size="35" maxlength="50" />
</div></td>
</tr>
<tr>
<td align="left" valign="top"><span class="Estilo19">Mensaje</span></td>
<td><div align="left">
<textarea name="mensaje" cols="35" rows="5"></textarea>
</div></td>
</tr>
<tr>
<td align="left"> </td>
<td>
<div align="right">
<span class="Estilo21"><A HREF="javascript:document.form1.submit()">enviar</A>
<A HREF="javascript:document.form1.reset()"> borrar</A> </span></div>
</td>
</tr>
</form></td>
</tr> </table>
</table>
PHP:
<?php
$mail='mi direccion';
$nombre = $_POST['nombre'];
$email = $_POST['email'];
$mensaje = $_POST['mensaje'];
$thank="web de exito";
$message = "
nombre:".$nombre."
email:".$email."
mensaje:".$mensaje."";
if (mail($mail,"Formulario de Consulta",$message))
Header ("Location: $thank" );
?>