# Email Verification SDR Queue

**Use case:** 

Turn a verified email list into an SDR triage queue: SLA tier, time-value score, channel strategy and a recommended action per contact.

## Input

```json
{
  "emails": [
    "hello@apify.com",
    "ceo@apify.com",
    "test@mailinator.com",
    "user@gmail.com",
    "invalid@nonexistent-domain-xyz123.com",
    "info@stripe.com",
    "random.person.99x@gmail.com"
  ],
  "mode": "prospecting",
  "systemMode": true,
  "maxEmails": 0,
  "outputProfile": "standard",
  "deltaMode": false,
  "includeDomainInsights": false,
  "includeBatchInsights": false,
  "includeDeliverabilitySimulation": false,
  "includeStrategySequence": false,
  "smtpTimeout": 10,
  "maxConcurrency": 10
}
```

## Output

```json
{
  "slaTier": {
    "label": "SLA tier",
    "format": "object"
  },
  "humanTimeValue": {
    "label": "Human time value",
    "format": "object"
  },
  "decision": {
    "label": "Decision",
    "format": "string"
  },
  "recommendedAction": {
    "label": "Recommended action",
    "format": "object"
  },
  "email": {
    "label": "Email",
    "format": "string"
  },
  "reachability": {
    "label": "Reachability",
    "format": "object"
  },
  "channelStrategy": {
    "label": "Channel strategy",
    "format": "object"
  },
  "automationTriggers": {
    "label": "Automation triggers",
    "format": "object"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk Email Verifier — MX, SMTP & Disposable Detection at Scale](https://apify.com/ryanclinton/bulk-email-verifier) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/bulk-email-verifier) to learn more, explore other use cases, and run it yourself.