Anonymous - 2009-06-08

how does one form the php email so you can send a dual style, html and text to your reciept.

having difficulty: (current verson bellow in standard text)

//Sending auto respond Email to visitor
$pfw_header = "From: info@verdegia.com\n"
  . "Reply-To: info@verdegia.com\n";
$pfw_subject = "Thankyou for registering at Verdegía Online.";
$pfw_email_to = "$Email";
$pfw_message = "$Name\n"
. "$Surname\n"
. "PLEASE FIND YOUR VERDEGÍA ONLINE REGISTRATION\n"
. "\n"
. "Name: $Name\n"
. "Surname: $Surname\n"
. "Username: $Username\n"
. "Password: $Password\n"
. "Email: $Email\n"
. "Company: $Company\n"
. "Telephone: $Telephone\n"
. "Address: $Address\n"
. "Postcode: $Postcode\n"
. "Information: $Information\n"
. "Updates: $Updates\n";

@mail($pfw_email_to, $pfw_subject ,$pfw_message ,$pfw_header ) ;