MyBB Community Forums

Full Version: [Solved] Custom "Forgotten Password"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there anyway I can customize the forgotten password thing? My host has disabled sendmail and they will not enable it. (I have emailed them) So I'm wondering, Is there anyway so that once they click "Forgot Password" That they could email me, and I could change it in the admin cp and then I would email them with the password? Thanks in advance!
How would MyBB be able to email you if sendmail is disabled?

You can change the entire reset password code in member.php. Look for something like:
if($mybb->input['action'] == "resetpassword")
{
// ...
}
DennisTT Wrote:How would MyBB be able to email you if sendmail is disabled?

You can change the entire reset password code in member.php. Look for something like:
if($mybb->input['action'] == "resetpassword")
{
// ...
}

thanks