Mail form sender

find this line of code in your php:


$header = "From: " . $HTTP_POST_VARS['sender_name'] . " <" . $HTTP_POST_VARS['sender_mail'] . ">
";

and replace it with this:


$header = "From: YourName <your@email.address>
";

but replace YourName and your@email.address with whatever you want