<?php
$adr_mail = "destinataire@serveur.fr";
$titre = "Le titre du mail";
$tete = "From: emetteur@serveur.com\n";
$tete .= "Content-Type: text/html;";
$corps .= "<HTML><BODY> Du Code html";
$corps .= "la suite du code html";
$corps .= "</BODY></HTML>";
$ok = mail($adr_mail, $titre, $corps, $tete);
?>