Is it possible to use HTML tags in PHP code? I have a php script that emails some form inputs to my email address, and I would like to bold certain words in it. The code preforms the message first, and then just posts the message in the body of the email like this:
$body = "Date Submitted: $today\n Client: $client\n From: $requestor\n $services";
I would like to make some words bold. Like the word Client. In that body message, how can I make it come up bold in the email?
Thanks.