proba con esto:
Código PHP:
Ver original<?php
var_dump($_POST); //para ver si llegaron los campos del formulario
if (isset($_POST['CasillaVerificacion']) && $_POST['CasillaVerificacion'] = "verificado"){ $nombre = $_POST['txtNombre'];
$mail = $_POST['txtEmail'];
$empresa = $_POST['txtEmpresa'];
$telefono = $_POST['txtTelefono'];
$asunto = $_POST['txtAsunto'];
$mensaje = $_POST['txtDescripcion'];
$enviar = true;
if ($nombre != "")
{
?>
<script language="javascript">
alert("El campo Nombre es obligatorio");
window.history.back();
</script>
<?php
echo "error"
$enviar = false;
}
if ($mail != "")
{
?> <script language="javascript">
alert("El campo E-mail es obligatorio");
window.history.back();
</script>
<?php
$enviar = false;
}
if ($asunto != "")
{
?> <script language="javascript">
alert("El campo Asunto es obligatorio");
window.history.back();
</script>
<?php
$enviar = false;
}
if ($mensaje != "")
{
?> <script language="javascript">
alert("No has escrito ningún mensaje");
window.history.back();
</script>
<?php
$enviar = false;
}
if ($enviar == true)
{
$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 . ", de la empresa " . $empresa . " \r\n";
$mensaje .= "Su e-mail es: " . $mail . " \r\n";
$mensaje .= "Su telefono es: " . $telefono . " \r\n";
$mensaje .= "Mensaje: " . $mensaje . " \r\n";
$mensaje .= "Enviado el " . date('d/m/Y', time());
$para = '*****@hotmail.com';
$asunto = "Asunto: ";
echo utf8_decode("Mensaje enviado correctamente.\nEn breve sera respondida su peticion"); }
?>