Ides,
It is certainly possible. What you would need to do is put the HTML of the page into an array and use that to construct your message:
<?
$page_html = file("path/to/html/file");
$to = "someone@somewhere.com";
$subject = "HTML Email";
$from = "someone";
for ($x=0;$x < count($page_html);$x++) {
$message .= $page_html[$x];
}
$headers = "FROM: $from\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Type: text/html\n";
mail($to,$subject,$message,$headers);
?>
This should work.
Hope this helps
Mike
www.digitalegg.net