Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @zsimaiofgr

    Thank you for reaching. I will look into it and get back to you.

    if you have any questions, please let me know.

    Regards

    Thread Starter zsimaiofgr

    (@zsimaiofgr)

    Hello @jahmedas

    i found the solution a couple of hours after the post.

    The answer is to use the wpas_email_notifications_email filter hook in the following way :

    add_filter( 'wpas_email_notifications_email',  'example_callback', 10, 3);
    function example_callback( $email_variables, $case, $ticket_id ) {
    
       
                $temp_arr_user_rep = array();
                $temp_arr_user_rep["user_id"]=0;
                $temp_arr_user_rep["email"]="[email protected]";
                array_push($email_variables["recipient_email"],$temp_arr_user_rep);
               
                return $email_variables;
        }
    • This reply was modified 2 years, 2 months ago by zsimaiofgr.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add extra standard recipient email on ticket reply’ is closed to new replies.