EmailHeader triggerUserEmail should be used to send the Email Notifications for the Case Comment records created.
Reference Article:
Sample Apex Code:
CaseComment objCaseComment = new CaseComment(
ParentId = '5003t00001icShAAAU',
CommentBody = 'Testing Demo'
);
Database.DMLOptions objDMLOptions = new Database.DMLOptions();
objDMLOptions.EmailHeader.triggerUserEmail = true;
objCaseComment.setOptions(
objDMLOptions
);
insert objCaseComment;