Ciao ragazzi, ho un piccolo problemino cn l'invio delle mail in php...
fino a giugno, avevo creato un form, con più caselle di testo semplici, dove si potevano inserire quindi vari nomi...e poi qsto form veniva mandato via mail a me...
Dopo la pausa estiva, ho fatto una modifica, ho sostituito le semplici caselle di testo, con caselle di riepilogo a discesa...ma il file nn mi ha più funzionato, nel senso che il ciclo di controllo del buon esito di invio e-mail, mi dava ke la mail era stata inviata correttamnte, ma le tante mail di rpova che ho mandato, nn mi sono tutt'ora arrivate...
qual'è il problema??????
ho provato a rimettere le caselle di testo, quelle semplici, ma niente, lo stsseo form che funzionava 15 giorni prima, ora non funziona più...
non è che c'entra altervista??...non è che hanno problemi??
ci sbatto la testa da 4 giorni...
tutto il week a fare prove...nn trovo l'errore, il codice mi sembra buono...
ecco il codice:
Codice PHP:
<?// L'INDIRIZZO DEL DESTINATARIO DELLA MAIL
$to = "XXX@XXX.it";
// IL SOGGETTO DELLA MAIL
$subject = "Ordine";
// COSTRUIAMO IL CORPO DEL MESSAGGIO
$body .= "Data";
$body .= trim(stripslashes($_POST["T22"])) . "\n\n";
$body .= "Prodotti nuovi\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 .= "Prodotti scorta\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 Alfonso.";
}
?>
Vi prego...help me!!!
per sabato mi serve ke qsto form funzioni....aiutoooo!!!
FunCool: Quando scrivi del codice inseriscilo tra i tag appositi.