Puoi modificare questo pezzo di codice:
Codice PHP:
mail($leo, $subject, $testo);
print"<html>
<head>
<body text=\"#FFFFFF\">
</head>
<body>
</body>
</html>";
In questo modo:
Codice PHP:
if (mail($leo, $subject, $testo))
echo "<html>
<head>
<meta http-equiv=\"refresh\" content=\"5;url=pagina2.html\" />
</head>
<body>
E-mail inviata correttamente. Tra 5 secondi verrai reindirizzato a pagina 2.
</body>
</html>";
else
echo "<html>
<head>
</head>
<body>
E-mail non inviata correttamente.
</body>
</html>";