Can someone please tell me where or how to change the "From" field of my email to read the email submitted on my form and not my server info?
Thanks
look at the code in process.php (based on the version of the generator you use) and at the bottom you should see the following:
$message = stripslashes($message); //mail("yourmail@yourmail.com","SubjectName Submitted at your website",$message,"From: Your name");
here you can change: - SubjectName Submitted at your website - From: Your name
Log in to post a comment.
Can someone please tell me where or how to change the "From" field of my email to read the email submitted on my form and not my server info?
Thanks
look at the code in process.php (based on the version of the generator you use) and at the bottom you should see the following:
$message = stripslashes($message);
//mail("yourmail@yourmail.com","SubjectName Submitted at your website",$message,"From: Your name");
here you can change:
- SubjectName Submitted at your website
- From: Your name