i have got this php code but i dont know what to add so that i can send other vars to the body of the email not just "address".
<?php
$sendTo = "[email protected]";
$subject = "Info request";
$headers = "From: " . $_POST["name"] ." ". $_POST["company"] . "<" . $_POST["email"] .">\r\n";
$headers .= "Reply-To: " . $_POST["email"] . "\r\n";
$headers .= "Return-path: " . $_POST["email"];
$message = $_POST["address"];
mail($sendTo, $subject, $message, $headers);
?>
