'.'Address-1:'.$_POST['address'].'
'.'Address-2:'.$_POST['addresss'].'
'.'City:'.$_POST['city'].'
'.'State:'.$_POST['state'].'
'.'Zip / Postal Code:'.$_POST['postal'].'
'.'Country:'.$_POST['country'].'
'.'Phone Number:'.$_POST['pnumber'].'
'.'Email Address:'.
$_POST['email'].'
'.'Web Address/URL:'.$_POST['web'].'
'.'Comments/Questions:'.$_POST['comments'];
$to="sales@usapad.com";
$subject="Contact Information Capturing Page";
$from=$_POST['email'];
mail($to ,$subject,$mess,"From: $from\nReply-To: $from\nContent-Type: text/html");
}
?>