• Resolved outmane05

    (@outmane05)


    hello,
    i have a registration with confirmation email
    i want to send another email when user register
    is this possible with your plugin ? if so i would like to know how
    thank you

Viewing 1 replies (of 1 total)
  • Hi @outmane05.

    If you are familiar working with PHP codes then you can use this hook to trigger an email when a user is registered on your site:

    //hook to use when user status is changed
    add_action( 'ur_user_status_updated' , 'create_customer_365', 10, 3);
    function create_customer_365( $status, $user_id, $alert_user)
    {
    	//your code here
    }
    

    Note: $status value is 0 when not approved and 1 when approved.
    Also, there is no other option that you can use to do this.

    I hope it helps.
    Regards!

Viewing 1 replies (of 1 total)
  • The topic ‘aditional email’ is closed to new replies.