Php For Email Contact Form
Hi im having problems with my PHP code for sending an email via a contact form. I am getting no errors and can see no problem with the code after researching it thoroughly, could s
Solution 1:
It seems your problem is server setup. Are you local? Are you on a shared hosting plan? If the latter you may have a domain problem, so contact your hosting solution to ensure you have it set up right. Also check your server error logs.
Solution 2:
My first guess is that you're running this locally, in that case you'll need to set up a local mail server.
Also, if ( $senderName && $senderEmail && $senderMessage )
will fail if any of those variables, like for example $senderMessage
, is "0"
.
Solution 3:
I can't find <form>
. May it cause problems.
Post a Comment for "Php For Email Contact Form"