• Resolved XCTrails

    (@xctrails)


    Hi,

    is there a way to send a notification email to an admin after a user has confirmed their email (via the {account_activation_link})? I’d also be ok to put that into an action in my theme’s functions.php if I’d knew into which filter to hook…

    Thanks,
    Armin

Viewing 1 replies (of 1 total)
  • Thread Starter XCTrails

    (@xctrails)

    Ok, figured that out myself:

    add_action( 'um_after_email_confirmation', 'my_after_email_confirmation', 10, 1 );
    function my_after_email_confirmation( $user_id ) {
        // do something
    }
    
Viewing 1 replies (of 1 total)

The topic ‘Admin email after activation confirmation’ is closed to new replies.