How do I include .$email to the mail function.
this is my current code:
mail($to, $subject, “”, $headers);
I want do it like this;
mail(“me@myweb.com”.$email, $subject, “”, $headers);
Thanks
How do I include .$email to the mail function.
this is my current code:
mail($to, $subject, “”, $headers);
I want do it like this;
mail(“me@myweb.com”.$email, $subject, “”, $headers);
Thanks
What exactly is $email? If it is the from email address then it needs to go in the headers with appropriate text to identify that it is the from header.