Originariamente inviato da Braco
Codice PHP:
$headers  "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "X-Mailer: PHP\n"
$headers .= "From:tuoSito[url]www.tuoSito.it[/url]\n";

$suoemail $_POST["suoemail"];   
//Oggetto dell'e-mail 
$oggetto="Ciao";  
$messaggio="<html>
<head>
</head>
<body>
Ciao, come va?




Saluti
</body>
</html>"

//Invio della mail 
mail ($suoemail,$oggetto,$messaggio,$headers);