On asp I could send the data entered to my customers and my reps. Will the following code work on PHP. I don't think its working...
$email=$values["Email"];
$email2=$values["Representative"];
$from="info@resourceliving.com";
$msg="Message"."\r\n";
$subject="Customer Proof";
$subject2="Reps copy";
$msg.= "Business: ".$values["Business"]."\r\n";
$msg.= "Email: ".$values["Email"]."\r\n";
$msg.= "Telephone: ".$values["Telephone"]."\r\n";