Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End get the $EmailFrom from user in contactform.php Re: get the $EmailFrom from user in contactform.php

#64317
ikthius
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.