HI,
Using the code below, how do i make the words “Person(s) Name:” and “Contacts Email:” bold in a email since i cannot use html?
<?php
print "Thank You, <b>$_POST[name]</b>, Your email message has been sent!<br><br>
";
print "Your message was:<br><br>
";
print “$_POST[message] <br><br>”;
// NIBO mail string
$msg = "Person(s) Name: $_POST[name]
";
$msg .= "Contact’s Email Address: $_POST[email]
";
$msg .= "Question/Message:
$_POST[message]
“;
// NIBO mail setup
$recipient = "brich@nibodesigns.com”;
$subject = “Someone has a question about your home!”;
$mailheaders = "From: RyderCupHomes2004.com <contact@rydercuphomes2004.com>
";
$mailheaders .= “Reply-To: $_POST[email]”;
// Send the **** mail
mail($recipient, $subject, $msg, $mailheaders);
?>