ho questo file php, che nn mi funziona +...in quanto, nn mi esce alcun errore di testo, ma la mail nn arriva...Quale potrebbe essere il problema????

ecco il codice...
Codice PHP:
<?// L'INDIRIZZO DEL DESTINATARIO DELLA MAIL
$to "xxx@alice.it";

// IL SOGGETTO DELLA MAIL
$subject "Formazione";

// COSTRUIAMO IL CORPO DEL MESSAGGIO
$body .= "Modulo  ";
$body .= trim(stripslashes($_POST["T22"])) . "\n\n";
$body .= "Formazione Titolare\n";
$body .= trim(stripslashes($_POST["x1"])) . "\n";
$body .= trim(stripslashes($_POST["x2"])) . "\n";
$body .= trim(stripslashes($_POST["x3"])) . "\n";
$body .= trim(stripslashes($_POST["x4"])) . "\n";
$body .= trim(stripslashes($_POST["x5"])) . "\n";
$body .= trim(stripslashes($_POST["x6"])) . "\n";
$body .= trim(stripslashes($_POST["x7"])) . "\n";
$body .= trim(stripslashes($_POST["x8"])) . "\n";
$body .= trim(stripslashes($_POST["x9"])) . "\n";
$body .= trim(stripslashes($_POST["x10"])) . "\n";
$body .= trim(stripslashes($_POST["x11"])) . "\n\n";
$body .= "Formazione Riserve\n";
$body .= trim(stripslashes($_POST["x12"])) . "\n";
$body .= trim(stripslashes($_POST["x13"])) . "\n";
$body .= trim(stripslashes($_POST["x14"])) . "\n";
$body .= trim(stripslashes($_POST["x15"])) . "\n";
$body .= trim(stripslashes($_POST["x16"])) . "\n";
$body .= trim(stripslashes($_POST["x17"])) . "\n";
$body .= trim(stripslashes($_POST["x18"])) . "\n";

// INVIO DELLA MAIL
if(mail($to$subject$body)){
} else{
echo 
"Si è verificato un errore durante l'invio. Riprovare o Contatta Al Sith.";
}
?>
vi prego...qualcuno mi aiuti...

help me!!!