I am using Foundation Theme FormBase and I have all add on pack. ı am using formbase for email from website. Although “succesfully sent” message raises the mail do not sent.
I am using same settings my other website there is no problem.
Can you screenshot the Form stacks you have on the page and the settings panel? It’s difficult to say what the issue is without seeing the settings you have.
If email sent from your website is not received it may be being rejected by our mail system.
Make sure your script is sending email address with the configured sender being an email address you have configured on your hosting account. The script may be using SMTP, the PHP mail() function, or sendmail (/usr/sbin/sendmail) for example. (Additionally, if your script is talking SMTP natively instead of using one of the other methods you will be required to authenticated using SMTP AUTH, please consult the documentation on the script for information on how to do this.)
If you cannot configure the sender specifically in your script then the system will use the default address of info@yourdomain.tld where yourdomain.tld is the domain name of the web site which is sending the email. If that is the case then you will need to create this email address on the account.
If you are using PHP and it’s mail() function, see the manual http://php.net/mail and reference the additional_parameters section.