$from=$_POST["T2"];
$site=$_SERVER['HTTP_HOST'];
$name=$_POST["T1"];
$organization=$_POST["T3"];
$comments=$_POST["S1"];
$to="info@web-based-marketing.com";
$subject="Contact Us Information";
$body="Coming from: $site\nName: $name \nEmail: $from \nOrganization: $organization\nComments: $comments" ;
mail($to,$subject,$body,"From: info@web-based-marketing.com");
?>