for some reason, the sender's name is still the admin from the box, i'm using a webserver with apache, running on linux ( not sure which version)
here's my current code
$to = 'me@gmail.com';
$subject = 'the subject';
$message = 'hello';
$headers = "From: webmaster@ex.com\n";
'Reply-To: webmaster@exam.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
[code=php]
the reply to seems to work, but it just does not seem to pick up the from field, is this unusual? am i doing something silly?
thanks