Find below code for resume attachment in “Simple Job Board” wordpress plugin.
add_filter(‘sjb_hr_notification_attachment’, ‘custom_code_for_hr_resume_attachment’, 20, 2);
function custom_code_for_hr_resume_attachment( $resume_path, $post_id ){
return get_post_meta($post_id, ‘applicant_resume’, TRUE);
}