Home › Forums › Back End › get the $EmailFrom from user in contactform.php › Re: get the $EmailFrom from user in contactform.php
September 17, 2009 at 5:22 pm
#64317
Member
think about your form first, this is where you are going to gather the information.
in the script you really want to get the users email & post the contents of the form to someone else…..
e.g.
$to = "[email protected]"; this is going to the preson who needs the info
$from = $_REQUEST; //this is from the person filling in the form
later on, in same script, you can email yourself with the contents, and also send an email back to the person who filled in the form with a thank you email.