# PHP mail question

**URL:** https://forum.kirupa.com/t/php-mail-question/190962
**Category:** programming
**Created:** [June 15, 2006, 11:16pm UTC](https://forum.kirupa.com/t/php-mail-question/190962 "2006-06-15T23:16:30Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mpr](https://avatars.discourse-cdn.com/v4/letter/m/d6d6ee/32.png) [@mpr](https://forum.kirupa.com/u/mpr)
#### Post date: [June 15, 2006, 11:16pm UTC](https://forum.kirupa.com/t/php-mail-question/190962/1 "2006-06-15T23:16:30Z")

</div>

I’ve got this as a PHP page that a flash movie (contact form) is using to send to email:

```php

<?PHP
$to = "myemailaddress@emailaccount.com";
$subject = "A message from your site";
$message = "Name: " . $theName;
$message .= "
Email: " . $theEmail;
$message .= "
Guitar Model: " . $theModel;
$message .= "

Message:
 " . $theMessage;
$headers = "From: $theEmail";
$headers .= "
Reply-To: $theEmail";

mail($to,$subject,$message,$headers);

?>

```

Works fine. But what I’d like to see is the text headers (Name, Email, etc.) that show up in the email to be bold with the imputed text normal. In other words, it would show up in the email as:

**Name** someone somename  
**Email** [something@somewhere.com](mailto:something@somewhere.com)  
etc.

Everytime I drop a \<b\> \</b\> in the script it shows up in the email. Any suggestions?
