<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>::mail:::</title>
</head>
<body>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<?php
$nombre = $_POST['nombre'];
$mail = $_POST['mail'];
$area = $_POST['areas']; // Este es el dato que necesitas para seleccionar el destino del mail
$mensaje = $_POST['mensaje'];
$asunto =$_POST['asunto'];
$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." \r\n";
$mensaje .= "Su e-mail es: " . $mail . " \r\n";
$mensaje .= "Mensaje desde la web de Softlife: " . $_POST['mensaje'] . " \r\n";
$mensaje .= "Enviado el " . date('d/m/Y', time());
switch($area){ //Aqui seleccionamos de acuerdo al dato enviado
case 1:
$para ="
[email protected]";
break;
case 2:
$para ="
[email protected]";
break;
case 3:
$para ="
[email protected]";
break;
case 4:
default: // Este es el valor por defecto ya que tu haz puesto -- Seleccione Area -- como primera opcion (osea el indice 0)
$para ="
[email protected]"; //edita esta linea para colocar el mail por defecto
break;
}
mail ($para, $asunto, $mensaje, $header);
/*echo "<script language=\"javascript\" type=\"text/javascript\">
alert('Dios Te Bendiga!!, Pronto tendrás una respuesta oportuna.');
window.location = \"http://$_SERVER[HTTP_HOST]\";
</script>
";*/
?>
</body>
</html>
</body>
</html>