Buenas tardes para todos
Tengo el siguiente formulario:
HTML
Código HTML:
Ver original<form action="send.php" method="post">
<input type="text" name="nombre" id="nombre" />
<input type="text" name="mail" id="mail" />
<input type="text" name="telefono" id="telefono" />
PHP
Código PHP:
Ver original<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<title>Titulo...</title>
<!--Estilo formulario de registro-->
<link href="css/estilo_formulario.css" rel="stylesheet" type="text/css" />
</head>
<div id="container">
<body>
<div class='banner_inicio'><img src='images/banner_inicio.png' alt='texto...' /></div>
<?php
if(isset($_POST["nombre"]) && isset($_POST["mail"]) && isset($_POST["telefono"]) && isset($_POST["asunto"])){ ///
$fecha = date("D-M-y H:i"); ///
///
$mensaje= "Correo enviado desde el sitio Web...";
///
$contenido .= "Nombre : ".$_POST["nombre"]."\n";
$contenido .= "email : ".$_POST["mail"]."\n";
$contenido .= "Telefono : ".$_POST["telefono"]."\n";
$contenido .= "Asunto : ".$_POST["asunto"]."\n";
$contenido .= "El mensaje fue escrito el ".$fecha;
///
$header = "From:".$_POST["mail"]."\nReply-To:".$_POST["mail"]."\n";
$header .= "Mime-Version: 1.0\n";
$header .= "Content-Type: text/plain";
///
echo "<div class='mensaje'>Su correo ha sido enviado correctamente...</div>";
echo "<div class='regresar'><a href='index.html' title='Regresar'><p>Regresar</p></a></div></p>";
}
?>
</div>
</body>
</html>
Además cómo agregarle un texto que diga "Correo no enviado..." cuando el correo no sea enviado
Gracias por su ayuda