How to receive notifications when a new user registers

This is an easy way to get to get emails upon user registration – just needs to be added to your function.php file.

function registration_email_alert($user_id) {
    $message = strip_tags($_POST['user_login']). ' - ' . strip_tags($_POST['user_email']) . ' Has Registered To Your Website';
    wp_mail( '[email protected]', 'New User Has Registered', $message );
}
add_action('user_register', 'registration_email_alert');

I’m sure there’s also a way to get notified upon downloads but that might take extra time to figure out.