Neville,
Thanks for the help. So the code that I needed ended up being:
// get contents of a file into a string
$filename = "test.html";
$fd = fopen ($filename, "r");
$contents = fread ($fd, filesize ($filename));
fclose ($fd);
And then I used that in my mail command:
mail("me@mydomain.com", "This is a test", $contents, "From:me@mydomain.com\nContent-type:text/html");
Thanks alot for your help. It is going to make the next project a little easier. I love this web site. - Bruce