well, make an html page with images and what ever. then send it like so:
$to = "someone@somewhere.com";
$subject = "html message";
$message = "stuff in here";
$header = "Content-Type: text/html; charset=iso8859-1\n";
mail($to, $subject, $message, $header);