site_name ) ) $current_site->site_name = "WordPress MU"; $welcome_email = str_replace( "SITE_NAME", $current_site->site_name, $welcome_email ); $welcome_email = str_replace( "BLOG_URL", $url, $welcome_email ); $welcome_email = str_replace( "USERNAME", $user->user_login, $welcome_email ); $welcome_email = str_replace( "BLOG_ID", $blog_id, $welcome_email ); $admin_email = get_site_option( "admin_email" ); if( $admin_email == '' ) $admin_email = 'support@' . $_SERVER[ 'SERVER_NAME' ]; $message_headers = "MIME-Version: 1.0\n" . "From: " . get_site_option( "site_name" ) . " <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n"; $message = $welcome_email; $subject = sprintf(__('New %1$s Blog: %2$s'), $current_site->site_name, $title); @wp_mail( $admin_email, $subject, $message, $message_headers); } ?>