Thanks. I added the code below to the admin-jobs.php file and it works! Subscribe2 now sends email notification to subscribers upon posting a New Job. I appreciate your quick response.
function my_post_types($types) {
$types[] = ‘jobman_job’;
return $types;
}
add_filter(‘s2_post_types’, ‘my_post_types’);