salve ragazzi , avrei un problema con le invie delle email ...
ho un lavoro ,dentro un hosting windows di aruba , pero il problema e che non mi invia l email , specialmente quella di rtisposta automatica, cosa potrebbe essere il problema posto lo script :
Codice PHP:

if(!isset($_POST['action'])){$action ''; }else{$action =  $_POST['action'];}
if(!isset(
$_POST['email'])){$email ''; }else{$email =  $_POST['email'];}
if(!isset(
$_POST['name'])){$name ''; }else{$name =  $_POST['name'];}
if(!isset(
$_POST['comments'])){$comments ''; }else{$comments =  $_POST['comments'];}
if(!isset(
$_POST['telefono'])){$telefono ''; }else{$telefono =  $_POST['telefono'];}
if(!isset(
$_POST['oggetto'])){$oggetto ''; }else{$oggetto =  $_POST['oggetto'];}



//Process the form data!
// and send the information collected in the Flash form to Your nominated email address

if (isset($action) && $action == "send") {
    
//
    
mail("$adminaddress","informazioni",
    
"Il visitatore ha lasciato le seguenti informazioni \n
    Name: 
$name 
    Email: 
$email\n
    Telefono: 
$telefono 
    Messaggio:
    ------------------------------------------------------------
    
$comments
    
    Logged Info :
    ------------------------------------------------------------
    Using: "
.$_SERVER['HTTP_USER_AGENT']."
    Hostname: "
.$_SERVER['HTTP_HOST']."
    IP address: "
.$_SERVER['REMOTE_ADDR']."
    Date/Time:  
$date","FROM:$email) ; 

    
    
mail("$email","Re:"
          
"Salve  $name  ,\n
           abbiamo ricevuto il suo messaggio e presto sarà contattato.\n
           Saluti dallo Staff del   
$sitename   
           By   
$siteaddress  ","FROM:$adminaddress") ; 
    
    

//