# Find a Professional Email by Name and Domain

**Use case:** 

Find a professional email from a person's name and company domain with pattern generation, MX validation, confidence scoring, and clean export fields.

## Input

```json
{
  "contacts": [
    {
      "first_name": "Tim",
      "last_name": "Cook",
      "domain": "apple.com"
    }
  ],
  "maxPatternsToTest": 3,
  "verificationLevel": "mx",
  "detectCatchAll": false,
  "timeout": 3
}
```

## Output

```json
{
  "email": {
    "label": "Email",
    "format": "text"
  },
  "first_name": {
    "label": "First name"
  },
  "last_name": {
    "label": "Last name"
  },
  "domain": {
    "label": "Domain"
  },
  "is_verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "confidence_score": {
    "label": "Confidence",
    "format": "number"
  },
  "verification_method": {
    "label": "Verification method"
  },
  "patterns_tried": {
    "label": "Patterns tried"
  }
}
```

## About this Actor

This example demonstrates how to use [📧 Smart Email Finder & Verifier - SMTP Validated](https://apify.com/benthepythondev/smart-email-finder-verifier) with a specific input configuration. Visit the [Actor detail page](https://apify.com/benthepythondev/smart-email-finder-verifier) to learn more, explore other use cases, and run it yourself.