Q: I do not receive an email confirmation after my forms are submitted.A: There are several situations that may cause the inability to receive emails from phpForms:
1) if you haven't indicated an e-mail template in the "Form options" section;
2) if the FROM field in the e-mail template is the same as the one entered in the form's option. Some servers don’t allow the concurrency of email address (in other words, when the 'From' and 'To' addresses are the same)
3) sometimes the address format may cause the problem. Please try to change it in the template or write it in a brief form (e.g. Info <
info@aaa.com> replace with
info@aaa.com)
4) spam filter also can prevent mails from being received. Please check the settings of your spam filter.
5) If there is no php mail() function on your server or it is configured in a specific way. You can check it by creating and running through a web interface a simple mail script:
<?php
$r = mail( 'YOUR@email', 'subject', 'test message' );
var_dump($r);
?>
where 'YOUR@email' is your email address.
If after running this script you do not receive an email, you should advise your system administrator about the settings of your server php mail() function.
As an alternative solution, you can use SMTP module that comes in the Pro and Members versions by default. With the help of this module you'll be able to send emails via SMTP.