<?
$msg="Name :\t$POST[userName]\n";
$msg.="Address :\t$POST[userAddress]\n";
$msg.="City/States :\t$POST[userState]\n";
$msg.="Country :\t$POST[userCountry]\n";
$msg.="Phone :\t$POST[userTel]\n";
$msg.="Fax :\t$POST[userFax]\n";
$msg.="Pin Code :\t$POST[userPincode]\n";
$msg.="Product Code :\t$POST[userProductcode]\n";
$msg.="Quantity :\t$_POST[userQuantity]\n";
$subject="Message from Order form";
$to="me@myserver.com";
$from=$_POST[userEmail];
mail($to,$subject,$msg,"From: $from \r\n");
?>
Is there any problem in above code .It is not sending the form data.
Please help.
Thanks