Not Getting Emails from Form
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
Not Getting Emails from Form
Hello
Added a form but not getting any email submissions, I tried the sending to addresses like @hotmail, @gmail and a not free address, still no submission came in.
I am using php mailer in the form.
Why is this, need some help on this.
Thank you
Added a form but not getting any email submissions, I tried the sending to addresses like @hotmail, @gmail and a not free address, still no submission came in.
I am using php mailer in the form.
Why is this, need some help on this.
Thank you
- ruel.lago22
-
- Posts: 151
- Joined: Thu Feb 01, 2018 11:32 am
Re: Not Getting Emails from Form
Try to check your spam folder.
Re: Not Getting Emails from Form
Please read 'Emails are not arriving in my inbox' in the FAQ:
viewtopic.php?f=10&t=32967
viewtopic.php?f=10&t=32967
Re: Not Getting Emails from Form
Not in Spam
Will check the FAQ
Thank you
Will check the FAQ
Thank you
Re: Not Getting Emails from Form
Seems my host is blocking php mailer, have to use Smtp.
They gave me how to do the form but need some help.
Need to put Smtp details like
Host
Username
Password
and I need the form to use the below
-----------------
$mailfrom = isset($_POST['email']) ? $_POST['email'] : $mailto;^M
-----------------
Change to this
-----------------
$mailfrom = 'info@mydomain.com';^M
-----------------
How do I get the form to use these details
They gave me how to do the form but need some help.
Need to put Smtp details like
Host
Username
Password
and I need the form to use the below
-----------------
$mailfrom = isset($_POST['email']) ? $_POST['email'] : $mailto;^M
-----------------
Change to this
-----------------
$mailfrom = 'info@mydomain.com';^M
-----------------
How do I get the form to use these details
- BaconFries
-
- Posts: 4712
- Joined: Thu Aug 16, 2007 7:32 pm
Re: Not Getting Emails from Form
You can configure the SMTP settings in the form properties (Advanced->Mail Engine)

Or read from Forms FAQ
What if my host does not support php mail or php mailer?

Or read from Forms FAQ
What if my host does not support php mail or php mailer?
Re: Not Getting Emails from Form
Thank you very much for this but how do I change to this
$mailfrom = 'info@mydomain.com';^M
instead of using this
$mailfrom = isset($_POST['email']) ? $_POST['email'] : $mailto;^M
$mailfrom = 'info@mydomain.com';^M
instead of using this
$mailfrom = isset($_POST['email']) ? $_POST['email'] : $mailto;^M
Re: Not Getting Emails from Form
You can set the "From" address in the email settings of the form:


Re: Not Getting Emails from Form
Thank you