Hi Danny!
I’m not at all sure what you are asking. Can you ask your question a different way? What are you trying to do?
When you set up the auto emails for at multisite, you can use placeholders like USERNAME, SITE_NAME and BLOG_URL.
I’m looking for the whole list.
Hi Danny!
Sorry it took me a little bit to get back to you – it took a little bit to track this down! 🙂
In wp-includes/ms-functions.php, you will find:
$welcome_email = apply_filters( 'update_welcome_user_email', $welcome_email, $user_id, $password, $meta );
$welcome_email = str_replace( 'SITE_NAME', $current_site->site_name, $welcome_email );
$welcome_email = str_replace( 'USERNAME', $user->user_login, $welcome_email );
$welcome_email = str_replace( 'PASSWORD', $password, $welcome_email );
$welcome_email = str_replace( 'LOGINLINK', wp_login_url(), $welcome_email );
Really great, Thanks alot!