Jake Vanderwerf
2025-12-21 3aada9949d51024a92a8b5c6cb70d12f9c3cac16
inc/managers/NotificationManager.php
@@ -435,6 +435,10 @@
     */
    public function trackContentCreation(int $post_id, WP_POST $post, bool $update):void
    {
      // SAFETY: Skip attachments and other non-content post types
      if (in_array($post->post_type, jvbIgnoredPostTypes())) {
         return;
      }
        // Skip if not a published post
        if ($post->post_status !== 'publish') {
            return;
@@ -1026,7 +1030,7 @@
        };
        // Send the email
        return jvbMail($user->user_email, $subject, $content, $header);
        return JVB()->email()->sendEmail($user->user_email, $subject, $content, $header);
    }
    /**