you can see on the title. i will post here my code.. i please if i done the code worng please
<?php
$name  = $_REQUEST["name"];
$email = $_REQUEST["email"];
$mobile = $_REQUEST["mobile"];
//$msg   = $_REQUEST["msg"];
$to    = "email@email.com"; // <--- Change email ID here
if (isset($email) && isset($name)) {
$subject = "Cadastro para Pos Graduacao em Lideranca e Gestao Sustentavel";
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
$headers .= "From: <".$email.">\r\n"."Reply-To: ".$email."\r\n" ;
$msg     = "From: Email: $email <br/>Mobile: $mobile" ; //<br/>Message: $msg
   $mail =  mail($to, $subject, $msg, $headers);
  if($mail)
    {
        echo 'success';
    }
else
    {
        echo 'failed';
    }
}
?>
well.. this codes works on other projets.. so i dont know what im doing wrong..
 
    