# Bulk Domain Email Security Checker

**Use case:** 

Audit SPF, DMARC, MX, and DKIM records for many domains with risk flags, scores, and export-ready DNS evidence.

## Input

```json
{
  "domains": [
    "google.com",
    "gmail.com",
    "example.com"
  ],
  "dkimSelectors": [
    "google",
    "selector1",
    "selector2",
    "default"
  ],
  "riskOnly": false,
  "includeRawRecords": true,
  "maxConcurrency": 20,
  "timeoutMs": 5000
}
```

## Output

```json
{
  "domain": {
    "label": "Domain"
  },
  "status": {
    "label": "Status"
  },
  "score": {
    "label": "Score"
  },
  "riskFlags": {
    "label": "Risk flags"
  },
  "mxHosts": {
    "label": "MX hosts"
  },
  "spfStatus": {
    "label": "SPF status"
  },
  "spfRecord": {
    "label": "SPF record"
  },
  "dmarcStatus": {
    "label": "DMARC status"
  },
  "dmarcPolicy": {
    "label": "DMARC policy"
  },
  "dmarcRua": {
    "label": "DMARC rua"
  },
  "dkimResults": {
    "label": "DKIM results"
  },
  "checkedAt": {
    "label": "Checked at"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk Domain Email Security Checker](https://apify.com/automation-lab/bulk-domain-email-security-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/bulk-domain-email-security-checker) to learn more, explore other use cases, and run it yourself.