Re: Godaddy email problems...
--------------------------------------------------------------------------------
Hmm, the 'take two aspirins and call me in the morning response. The simplest way to test is to reduce everything to the lowest common denominator.
If you take the following code, and paste it into a file, call it mailtest.php or something and edit it to use real email addresses. Then copy it into the main folder of your site, and open it with a browser, with
http://www.yourdomain.com/mailtest.php
Code:
<?php
$to = '
[email protected]';
$subject = 'the subject';
$message = 'hello';
$headers = 'From:
[email protected]' . "\r\n" .
'Reply-To:
[email protected]' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>It is simply a small piece of PHP code calling the mail() function. If that works, then you have some broken files or similar in your Zen Cart install. If not, your hosts are lying through their teeth.