Skip to content

Instantly share code, notes, and snippets.

@saraheolson
Forked from anonymous/functions_snippet
Created June 27, 2014 14:39
Show Gist options
  • Save saraheolson/1436b1dff7e2ed6368d1 to your computer and use it in GitHub Desktop.
Save saraheolson/1436b1dff7e2ed6368d1 to your computer and use it in GitHub Desktop.
<?php
function my_admin_notification_profile_update($userid) {
$userdata = get_userdata($userid);
$message = "A user profile has been updated\n\n";
$message .= print_r($userdata,true);
@wp_mail(get_option('admin_email'), 'User Profile Update', $message);
}
add_action('profile_update','my_admin_notification_profile_update');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment