• Resolved zapalych

    (@zapalych)


    Hello!
    I need the email to admin, when user info was fixed.
    If user change the attached (to him profile) file, I want to have automatically email about it. Like email with registration form.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support mansurahamed

    (@mansurahamed)

    Hi @zapalych,

    Sorry, we don’t have any such email feature at this moment. You can custom code this custom email and use following hook to send to admin after user updates his profile

    add_action( 'um_after_user_updated', 'my_after_user_updated', 10, 3 );
    function my_after_user_updated(  $user_id, $args, $userinfo ) {
      // your code here to send the custom email
    }
    

    Thanks.

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @zapalych,

    Please feel free to re-open this thread by changing the Topic Status to ‘Not Resolved’ if any other questions come up and we’d be happy to help. ??

    Regards,

    Thread Starter zapalych

    (@zapalych)

    @mansurahamed Sorry, I don’t understand.
    Is this code to functions.php?

    add_action( 'um_after_user_updated', 'my_after_user_updated', 10, 3 );
    function my_after_user_updated(  $user_id, $args, $userinfo ) {
      // your code here to send the custom email
    }

    // your code here to send the custom email

    what code i mustinput here?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Need email to admin, when user info was fixed’ is closed to new replies.