*SOLVED* Need to show the from email address entered by user.
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/forms.html
http://www.wysiwygwebbuilder.com/form_wizard.html
Frequently Asked Questions about Forms
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/forms.html
http://www.wysiwygwebbuilder.com/form_wizard.html
Frequently Asked Questions about Forms
-
-
- Posts: 31
- Joined: Thu May 17, 2018 3:05 pm
- Location: Ohio USA
*SOLVED* Need to show the from email address entered by user.
I have a contact form, when sent, that needs the from field in the email header to show the user who filled out the form's email address field. I've tried putting the form variable "$emailAddress" in the "More Form Processing Properties" 'From:' field. When run, it causes it to jump to the error page that is set up. I have researched this issue in vein. Any help would be greatly appreciated. Thanks...
Last edited by equalizer1001 on Wed Mar 27, 2019 7:56 pm, edited 1 time in total.
Re: Need to show the from email address entered by user.
You cannot use a variable in the form address. This property is meant to be used to configured a fixed email address because some servers do not allow email addresses outside the domain.
If you leave this field empty then the 'email' form field will be used in the email header.
See also the help.
If you leave this field empty then the 'email' form field will be used in the email header.
See also the help.
-
-
- Posts: 31
- Joined: Thu May 17, 2018 3:05 pm
- Location: Ohio USA
Re: Need to show the from email address entered by user.
I need the email that is generated by the form to show the email address of the person that filled out the form
If I leave the email address set in the form processing section blank it generates an error:
Fatal error: Uncaught Error: Class 'PHPMailer\PHPMailer\Exception' not found in /homepages/2/d543166077/htdocs/uayaperogies.test/PHPMailer.php:1410 Stack trace: #0 /homepages/2/d543166077/htdocs/uayaperogies.test/PHPMailer.php(1348): PHPMailer\PHPMailer\PHPMailer->preSend() #1 /homepages/2/d543166077/htdocs/uayaperogies.test/contact_us.php(232): PHPMailer\PHPMailer\PHPMailer->send() #2 {main} thrown in /homepages/2/d543166077/htdocs/uayaperogies.test/PHPMailer.php on line 1410
If I leave the email address set in the form processing section blank it generates an error:
Fatal error: Uncaught Error: Class 'PHPMailer\PHPMailer\Exception' not found in /homepages/2/d543166077/htdocs/uayaperogies.test/PHPMailer.php:1410 Stack trace: #0 /homepages/2/d543166077/htdocs/uayaperogies.test/PHPMailer.php(1348): PHPMailer\PHPMailer\PHPMailer->preSend() #1 /homepages/2/d543166077/htdocs/uayaperogies.test/contact_us.php(232): PHPMailer\PHPMailer\PHPMailer->send() #2 {main} thrown in /homepages/2/d543166077/htdocs/uayaperogies.test/PHPMailer.php on line 1410
Re: Need to show the from email address entered by user.
By default, if your form has a field 'email' this will be used as the from address.I need the email that is generated by the form to show the email address of the person that filled out the form
Do not enter anything in the 'from' address in form properties because this will override this behavior, as mentioned in the help
See also the FAQ:
How can I make sure the 'from address' in the email message is the entered email in the form.
viewtopic.php?f=10&t=32967
-
-
- Posts: 31
- Joined: Thu May 17, 2018 3:05 pm
- Location: Ohio USA
Re: Need to show the from email address entered by user.
Thank you very much... It is working... I had the email text box field name set to emailAddress. I changed it to email and all is well...