# Bulk Email MX Verifier

**Use case:** 

Verify email addresses in bulk with syntax checks, DNS MX lookup, disposable-domain detection, and optional SMTP probing.

## Input

```json
{
  "emails": [
    "user@google.com",
    "contact@github.com",
    "invalid-email",
    "test@mailinator.com"
  ],
  "verifySmtp": false,
  "smtpTimeoutSecs": 5,
  "concurrency": 25
}
```

## Output

```json
{
  "email": {
    "label": "Email"
  },
  "isValid": {
    "label": "Valid"
  },
  "riskLevel": {
    "label": "Risk"
  },
  "isDisposable": {
    "label": "Disposable"
  },
  "hasMxRecords": {
    "label": "Has MX"
  },
  "mxProvider": {
    "label": "Email Provider"
  },
  "smtpVerified": {
    "label": "SMTP Verified"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk Email MX Verifier — Cold Email List Cleaner](https://apify.com/automation-lab/email-mx-verifier) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/email-mx-verifier) to learn more, explore other use cases, and run it yourself.