<?
$destinatario=$_POST['destinatario'];
$nombre=$_POST['nombre'];
$remitente=$_POST['remitente'];
$asunto=$_POST['asunto'];
$msj=$_POST['msj'];
if(empty($destinatario)){echo 'Elija un destinatario<style>#destinatario{border-color:red;}</style>'; exit();}
if(empty($nombre)){echo 'Escriba su nombre<style>#nombre{border-color:red;}</style>'; exit();}
if(empty($remitente)){ echo 'Escriba su email<style>#remitente{border-color:red;}</style>'; exit();}
if(empty($asunto)){echo 'Escriba un asunto<style>#asunto{border-color:red;}</style>'; exit();}
if(empty($msj)){echo 'Escriba un mensaje<style>#msj{border-color:red;}</style>'; exit();}
if(!(substr_count($remitente,"@") == 1 and substr_count($remitente,".")>0)){
echo 'Email incorrecto<style>#remitente{border-color:red;}</style>'; exit();
}
if($destinatario=="vigo"){$destinatario="anhidavig
[email protected]";}
if($destinatario=="ferrolterra"){$destinatario="an
[email protected]";}
if($destinatario=="coruna"){$destinatario="anhidac
[email protected]";}
if($destinatario=='quico'){$destinatario='quico.an
[email protected]';}
$mensaje="";
$mensaje.="<b>www.anhida.org</b>"."\n\n";
$mensaje.="<b>Nombre:</b> $nombre"."\n";
$mensaje.="<b>E-mail:</b> $remitente"."\n";
$mensaje.="<b>Asunto:</b> $asunto"."\n";
$mensaje.="<b>Mensaje:</b> $msj"."\n";
$cabeceras = "From: $nombre <$remitente>\r\n";
$cabeceras .= "Return-Path: $remitente\r\n";
$cabeceras .= "MIME-Version: 1.0\r\n";
$cabeceras .= "X-Mailer:PHP 5.1\r\n";
$cabeceras .= "X-Priority: $priority\r\n";
$cabeceras .= "Content-Type: multipart/alternative; ";
if (mail($destinatario,$asunto,$mensaje,$cabeceras)) {
echo '<span>Email enviado<span>';
} else {
echo 'Envio erroneo';
}
?>