I ask this as my forum is still unable to send email validations. What should I do (Yeah I given up on smtp.)
btw I used a very simple php email script like this:
<?php
$to = "****@gmail.com";
$subject = "Test Mail";
$message = "Hello world!";
$headers = "From: ****@*****";
mail($to, $subject, $message, $headers);
echo "The email was sent";
?>
and it works but its not working for my Invision Power Board (its unable to do the email validtion when someone registers.)
Can anyone help me?