[php] format email form, bold font etc

hello, how can i add bold, colours, change font and stuff to this mail?
my code is:

<?php
$sendTo = "xxx@xxx.com";
$subject = “xxxxxxxx”;
$headers = “From: " . $_POST[“nome”];
$headers .= “<” . $_POST[“e-mail”] .”>
";
$headers .= "Reply-To: " . $_POST[“e-mail”];
$message = "Reserva de Bilhetes
";
$message.= “Nome: " . $_POST[“nome”] .”
";
$message.= “Peça: " . $_POST[“peca”] .”
";
$message.= “Data: " . $_POST[“data”] .”
";
$message.= “Número de Bilhetes: " . $_POST[“bilhetes”] .”
";
$message.= “Telefone: " . $_POST[“telefone”] .”
";
$message.= “E-mail: " . $_POST[“e-mail”] .”
";
$message.= “Observaçoes: " . $_POST[“observacoes”] .”
";

mail($sendTo, $subject, $message, $headers);
header(“Location: reservas_ok.htm”);
?>

i want to add bold in the text that appear on $message… anyone can help? i’m sure it’s easy and i searched but no luck till now :sigh: