Mailform kirupa

Hi there,

Anyone can help me out on the mailform I found on Kirupa.
Sow this are my inputfields: firma,contactpersoon, adres, postcode,plaats,tel, email. All single line and the inputfield info is multiline.
They are all placed inside an mc and placed on stage with the instancenma form( like the tutorial).

Below you see my phpscript. The only thing I recieve is what I type as info ($message = $_POST[“info”];). Can you see the prob on the other inputfields? Hope someone can help me out. Big thx in advance

$sendTo = “my emailadres”;
$subject = “Reply website”;

$headers = "Bedrijf: " . $_POST[“firma”];
$headers = "Contactpersoon: " . $_POST[“contactpersoon”];
$headers = "Adres: " . $_POST[“adres”];
$headers = "Postcode: " . $_POST[“postcode”];
$headers = "Gemeente: " . $_POST[“plaats”];
$headers = "Tel: " . $_POST[“tel”];

$_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];

$message = $_POST[“info”];

mail($sendTo, $subject, $headers, $message);

?>