private async Task <bool> EmailExists(int userId, int notificationId, DateTime sentDate)
 {
     return(await _emailHistoryRepository.EmailExists(userId, notificationId, sentDate));
 }