Hi all,
I have a simple(?) problem with my contact form. It used to work on another server and with an older PHP version but currently I can not get my contact form to send out email.
mail() always return false.
I have changed the sript from the old extract($_REQUEST); to
extract($_POST);
$name = $_POST['name'];
$email= $_POST['email'];
and so on.
Then, at the end when I do
mail("info@mydomain.com", "Product-Inquiry", "$message", "From:$email");
it never works.
What else do I have to configure on the server (PHP is active, of course) or where can I look for further diagnostics.
Sorry, if this question is a bit silly, but I am in a rush and need to fix this quickly.
THANKS for your help in advance, greatly appreciated
Thomas