Jump to content

spucing up my php processed email


Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.