Mail sending from nobody account
Greetings,I wrote a simple script using php's mail() function. I'm using the following headers:
$headers* = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: \"".$_POST[sendername]."\" <".$_POST[senderemail].">\n";
$headers .= "Reply-to: ".$_POST[senderemail];