'Wordpress Publish Post Hook not responding to Private Status Publishing

I have a hook that sends out an email to users whenever a post is published. It works fine for publicly published posts.

add_action('publish_post', 'userNotification',10);

However, when I publish the post with private status it does not do the action (send notifications). I would like to send userNotification if it published either privately or publicly.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source