MyBB Community Forums

Full Version: Hook to change the registration email?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am developing a plugin that changes the registration email to disallow activation if their minecraft username (In game name) has not been purchased.

I just need the hook, and a sample function that handles the hook to finish the plugin.

Thanks in advance,
Tyzoid
Anyone?
I believe member_do_register_start is what you're searching for. Wink

$plugins->add_hook("member_do_register_start", "yourfunction");

function yourfunction() {
    global $mybb;
	
    $mybb->input['email'] = 'newemail';
    $mybb->input['email2'] = 'newemail';
}
What variable holds the email message?
I believe it's $lang->email_activateaccount, it's stored in messages.lang.php.