1 poopoo Oct 09, 2006 02:47
3 blueyed Oct 10, 2006 01:07
Does a simple script like
<?php
if( mail( 'you@example.com', 'Test-subject', 'Test text' ) )
{
echo 'Mail sent';
}
else
{
echo 'Mail could not be sent!';
}
?>
work?
(e.g. save this as "testmail.php" on your webserver and call it through your browser)
Hmmm do you have the necessary variables set in your php.ini on your web server?
Raymond