Recent Topics

1 Oct 09, 2006 02:47    

Is there something I'm missing?

I am not receiving emails

2 Oct 09, 2006 06:36

Hmmm do you have the necessary variables set in your php.ini on your web server?

Raymond

3 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)


Form is loading...