Thanks for the replies, here's the portion of the code I'e tried without success...
$headers .= "Content-Type: text/html; charset=iso-8859-1\n";
$message = stripslashes($message);
mail($Reciever, $subject, $message, $headers);
This doesn't seem to work. I've also tried using htmlspecialchars()
Suggestions?
Rab