Email notification

$ticket is a WP_Post object. It should have all of the information you need. Just add that information to the $message string to create whatever content you want. Bare-bones example:

$message="You are viewing ".$ticket->post_title;
$message .= 'Post Content: '.$ticket->post_content;
$message .= 'View it: ' . get_permalink( $ticket->ID ) . "\nEdit it: " . get_edit_post_link( $ticket->ID );

If that isn’t what you are looking for, I am certain I don’t understand the question.