hello, all.
I'm trying to send a html email from a webform that has several checkboxes. I can get the form to send with the values in text boxes, but none of the checkboxes will show up.
Here is the code that i am using to send the script.
if ($action == send){
$subject = "webform";
$email = "me@me.net";
$headers = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";
$headers .= "From: WebSite <website@me.com>\n";
$body = "html form code here";
if (@mail($email, $subject, $body, $headers))
{
echo "Order Form Successfully Sent.";
};
}