I am trying to install a dbmailer.php by Norman Clarke in a form I'm working with. I can get it to give me the "your message has been succesfully submitted" but I never receive it from my server as the email. I can configure it to redirect so I know part of it is working. I have this line posted in my form <FORM ACTION="dbmailer.php" METHOD="POST" > and my email address in the php code but no luck. Any suggestions would be greatly appreciated.
Thanks Mc
Perhaps it's a problem with your servers mail server?
Try this simple script to check if it will send any mail:
<?php mail("you@your.com", "Your Subject", "Test Message"); ?>