mis codigos son en html
Código:
<script type="text/javascript">
function enviarDatos()
{
if(confirm("¿De verdad desea enviar el formulario?"))
{
document.getElementById('formulario').submit();
}
return false;
}
</script>
<form action="enviar.php" method="post" id="formulario">
Formulario de Contacto: <BR />
<b>Nombre:</b>
<input type="text" name="nombre" size="15" maxlength="70">
<BR>
<b>E-Mail:</b>
<input type="text" name="email" size="18" maxlength="100">
<BR />
<b>Teléfono:</b>
<input type="text" name="telefono" size="15" maxlength="50">
<BR>
<b>Comentario:</b> <BR>
<textarea name="coment" rows="7" cols="30"></textarea>
<input name="c" type="hidden" value="1">
<BR>
<BR>
<input type="submit" name="enviar" value="Enviar" onclick="enviarDatos(); return false;">
<input type="reset" name ="reset" value="Borrar">
</form>
en php es
Código:
<?php
$mail_destinatario = 'ventascaban@gmail.com';
$asunto = $_POST['asunto'];
$nombre = $_POST['nombre'];
$email = $_POST['email'];
$mensaje = $_POST['coment'];
$c = $_POST['c'];
$headers .= "From: ".$email. "rn";
if($c==1)
{
if(mail($mail_destinatario, $asunto, "Nombre: ".$nombre. "\nTeléfono: ".$telefono. "\nE-Mail: ".stripcslashes ($email)."\n Mensaje : ".stripcslashes ($mensaje), $headers))
{
echo "Mail enviado correctamente";
}
}
?>