# Find Email Address by Name

**Use case:** 

Find anyone's work email from their name and company: the actor detects the company's email pattern, then generates and verifies the address. No API key.

## Input

```json
{
  "domains": [
    "stripe.com"
  ],
  "names": [
    {
      "name": "Patrick Collison",
      "domain": "stripe.com"
    },
    {
      "name": "John Collison",
      "domain": "stripe.com"
    }
  ],
  "goal": "high-deliverability",
  "autoFilter": "none",
  "compareToPrevRun": false,
  "searchGitHub": true,
  "verifyEmails": true,
  "enableProFallback": false,
  "crmFormat": "generic-json",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "pattern": {
    "label": "Email Pattern",
    "format": "string"
  },
  "confidence": {
    "label": "Confidence",
    "format": "number"
  },
  "generatedEmails": {
    "label": "Generated Emails",
    "format": "array"
  },
  "plainEnglishSummary": {
    "label": "Plain-English Summary",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Email Pattern Finder - Discover Company Email Formats](https://apify.com/ryanclinton/email-pattern-finder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/email-pattern-finder) to learn more, explore other use cases, and run it yourself.