MyBB Community Forums

Full Version: Activation Emails
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
None of the users on my board are getting the activation emails! Is there a way to fix this problem>?
Is PHP configurared to send out email properly? Please use the following test script:

<?php
if($to)
{
 mail($to, "Test Email", "If you are receving this then email is setup correctly on your server.");
echo "Mail Sent";
}
?>
<form method="post" action="<?php echo $PHP_SELF; ?>">
To: <input type="text" name="to" value="" />
<input type="submit" value="Send" />
</form>

It should send an email to the address you specify in the form, if it doesn't then it is pretty much a PHP problem, though there may be a work around.
i just decided to shut off the email confirmation for registration. its the only solution i could think of.

thanks a lot for your help