I'm new to php and I'm sure this is probably something simple. I have been fiddling with this all day and I can't figure it out. This form works perfectly except for 1 thing. When I get the email - In the (UserComments) Quotes don't show up, anything after quotes won't show up. I tried everything I could think of.
partial code below
$UserComments =stripcslashes($UserComments);
$AdminMessage .= "$UserName, Submitted the following Information:\n\n";
$AdminMessage .= "Full Name: $UserName\n";
$AdminMessage .= "Address: $UserAddress\n";
$AdminMessage .= "City State Zip: $UserCsz\n";
$AdminMessage .= "Phone: $UserPhone\n";
$AdminMessage .= "E-mail: $UserEmail\n";
$AdminMessage .= "Topic: $UserTopic\n";
$AdminMessage .= "Comments: $UserComments\n\n";
mail("$SiteEmail", "$SiteName - Contact Form Submission", $AdminMessage, "From: $UserEmail");
thanks in advance