yah dood, php.net pages = wealth of everything you need, lol.
to help though:
$to = 'To Address <blah@toaddress.com>';
$cc = 'Carbon Copy Address<cc@ccaddress.com>';
$from = 'From Address <blah@Fromaddress.com>';
$subject='Subject';
$body='
<html>
<head>
<title>Subject</title>
</head>
<body>
<p>
BODY COPY/CODE
</p>
</body>
</html>
';
send_email($to,$subject,$body,$from,$cc);
//SEND HTML EMAIL
function send_email($to,$subject,$body,$from=NULL,$cc=NULL,$bcc=NULL)
{
// www.phphaven.com - j.riley 10/12/2007
$params =
'MIME-Version: 1.0' . "\r\n".
'Content-type: text/html; charset=iso-8859-1' . "\r\n".
'From: ' .$from. "\r\n".
'Reply-To: ' .$from. "\r\n".
'Cc: ' .$cc. "\r\n".
'Bcc: ' .$bcc. "\r\n";
$from = '';
mail ($to,$subject,$body,$params);
return TRUE;
}