portsmouthinkstore Posted May 17, 2009 Share Posted May 17, 2009 right then, this is my php code for my form: <?php $name = $_POST['name'] ; $dob = $_POST['dob'] ; $address = $_POST['address'] ; $telephone = $_POST['telephone'] ; $email = $_POST['email'] ; $position = $_POST['position'] ; $cleaning = $_POST['cleaning'] ; $buffing = $_POST['buffing'] ; $message = "Name: $name\n\nDate of Birth: $dob\n\nAddress: $address\n\nTelephone Number: $telephone\n\nEmail Address: $email\n\nPosition Applied for: $position\n\nPrevious Cleaning Experience: $cleaning\n\nPrevious Buffing Experience: $buffing"; mail( "****", "Vacancy Application", $message); header( "Location: http://www.****.html" ) ?> and the email I get is accurate but boring. How do I make the title (eg Name: / Date of Birth: etc) bold on the email I receive? Any help? Link to comment https://forums.phpfreaks.com/topic/158485-spucing-up-my-php-processed-email/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.