Hai, May i knwo how actually mail() work?
I try a script, but it doesnt' work ..
=====
$sendto = "$email";
$subject = "$subject";
$message = "$message\n\n";
$from = "$from";
mail($sendto, $subject, $message, "From: $from\nReply-To: $from");
What's wrong with it? What are the variables i can insert when sending out mail thru mail().