formcierge_entry_viewed
Action

Since v1.0.0

Fires the first time an entry is opened in the admin. Can be used to mark an entry as read in an external system or trigger a notification to a team member.

Parameters
$entry_id int The ID of the entry that was viewed.
Defined in
includes/Controllers/EntryController.php
add_action( 'formcierge_entry_viewed', function ( $entry_id ) {
    my_notify_assignee( $entry_id );
} );