single email address for all blogs

Hi,

What will be the best way to create multiple blogs in wpmu using single email address but different user names.

The idea is to allow admin to create all blogs using one email address and then give each user his / her username / password individually.

Is there a plugin for this or is this easy to do using any other way.

Thanks

  • drmike
    • DEV MAN’s Mascot

    Just to clarify, the email check currently exists on lines 961-963 of the wp-includes/wpmu-functions.php file.

    // Check if the email address has been used already.

    if ( email_exists($user_email) )

    $errors->add(‘user_email’, __(“Sorry, that email address is already used!”:wink:);

    I just realized though (which is what got me started on this) if you allow the use of multiple accounts with the same email address, the recover password function will not work.