Compilato il form invio ma la mail di notifica non parte nonostante esce che l'invio è partito
Codice PHP:
...
if($errore==""){
echo "Il tuo ordine è stato inviato"
}
else {
echo $errore;
$headersG1 = "MIME-Version: 1.0\r\n";
$headersG1 .= "content-type: text/html; charset=utf-8\r\n";
$headersG1 .= "X-Mailer: PHP\n";
$headersG1 .= "From: Me stesso <mestesso@gmail.com>\r\n";
//Invio email di avviso a me
$meG = "Me <mestesso@gmail.com>";
$oggettoG = "Grazie";
$messaggioM = "<html>
<head>
</head>
<body>
<table>
<tr>
<td>
<i>$messaggioG</i></div>
</td>
</tr>
</table>
</body>
</html>";
//Invio dell'email
mail ($meG,$oggettoG,$messaggioM,$headersG1);
}
}
?>
//QUI CI STA IL FORM