4
I still need help with this. Can someone please give me some advice?
I believe my PHP mail function is working properly. I created a mailtest.php with the following in it:
$to = "me@myhost.com";
$subj = "mytest";
$mess = "This is foo";
$headers = "";
$mailsend = mail($to,$subj,$mess,$headers);
?>
And I received the message in my email box. This indicates to me that the PHP mailer is set up right. So now I believe I have a problem with XOOPS, which I need help determining what it is.
Thank you.