This code sends Name:, Address:, City:...but does not send the info from the form. Any suggestions?
$msg .= "Contact Form Results\n\n";
$msg .= "Name: $POST[name]\n";
$msg .= "Address: $POST[address]\n";
$msg .= "City: $POST[city]\n";
$msg .= "State: $POST[state]\n";
$msg .= "Zip: $POST[zipcode]\n";
$msg .= "Phone: $POST[phone]\n";
$msg .= "Email: $POST[email]\n";
$msg .= "Message: $POST[comments]\n";
$recipient = "myemail@email.com";
$subject = "Contact Information";
$mailheaders = "From: \t $name<> \n";
$mailheaders .= "Reply-To: $email\n\n";
mail($recipient, $subject, $msg, $mailheaders);
echo "Thank you, $name for your inquiry.\n<br>";