I have a little php script on my server for sending mail:
Code: Select all
<?
$to=$_POST["to"];
$subject=$_POST["subject"];
$body=$_POST["body"];
mail($to,$subject,$body);
?>also, i am not sure my server has mail turned on - does that matter?
thanx in advance