I would put all your attachments in a single zip file upload it to somewhere like wp-cntent/uploads.
then put this inside your functions.php file (make sure lines wrap and are not seperated.)
function wp_new_user_notification($user_id, $plaintext_pass = '') {
$attachments = array(WP_CONTENT_DIR . '/uploads/yourzipfile.zip');
$user = new WP_User($user_id);
$user_login = stripslashes($user->user_login);
$user_email = stripslashes($user->user_email);
// The blogname option is escaped with esc_html on the way into the databa
se in sanitize_option
// we want to reverse this for the plain text arena of emails.
$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
$message = sprintf(__('New user registration on your site %s:'), $blognam
e) . "\r\n\r\n";
$message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
$message .= sprintf(__('E-mail: %s'), $user_email) . "\r\n";
@wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration
'), $blogname), $message, $attachments);
if ( empty($plaintext_pass) )
return;
$message = sprintf(__('Username: %s'), $user_login) . "\r\n";
$message .= sprintf(__('Password: %s'), $plaintext_pass) . "\r\n";
$message .= wp_login_url() . "\r\n";
wp_mail($user_email, sprintf(__('[%s] Your username and password'), $blogn
ame), $message);
}
I added $attachments to the wp_mail function call and identified the $attachments first line inside the function