I would like to send a notification email (Asana) whenever something is published (posts, pages, custom post types)

The code below works perfectly When I create a new post, an email is sent out to the email included in the function. I would like to know how I can send an email when anything is published on the website, like custom post types, pages and regular posts function notifyauthor($post_id) { $post = get_post($post_id); … Read more