Skip to content

Instantly share code, notes, and snippets.

View saraheolson's full-sized avatar

Sarah E. Olson saraheolson

View GitHub Profile
<?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);
}