Sending FROM header from PHP FORM

Hello,

I am trying to have a form have the REPLY TO email the same as the email the User has put in the form, Am I doing this right?


header("Location: " . $_SERVER['PHP_SELF']);
header("From: " . $email);

I don’t keep getting the wrong FROM in my inbox… it’s from the server I am on.

Thanks.