I have a php script that takes data from a form and sends it to me in an email. It works find with one exeption. The From field of the emails that the script sends me has the email address in quotes " "
Here is the line that I am using for the header From field
$headers .= "From: ".$_POST['email']."\r\n";
I have also used many others and tried tweaking them all and am always getting the same result. I need the address to come in without quotes so that my autoresponder will work.
Can someone please help this super newbie. I am not a coder but just need a solution to this problem. Thanks in advance.