Hi,
WIll this plugin work on regular/free s2member plugin? I’m only wanting a simple email notification once an admin changes a user role. I was provided a code before but it didnt work.
i did some research, i saw this code but havent tried it yet.
function kristin_send_email( $user_id, $new_role ) { $user_info = get_userdata( $user_id ); $to = $user_info->user_email; $subject = 'Role changed'; $message = "Hello " .$user_info->display_name . " your role has changed, now you are " . $role; wp_mail( $to, $subject, $message); } add_action( 'set_user_role', 'kristin_send_email' );
Thanks!