Skip to main content
Complete Email Infrastructure

Every Feature You Need, Zero You Don’t

From send to delivery, ApexMail handles everything: authentication, deliverability, compliance, analytics, and AI optimization—all without external dependencies.

99.9%
Delivery Rate
<1.2s
Avg. Delivery
100%
GDPR Compliant
0
Paid AI APIs

Complete Feature Set

Everything you need to send, track, and operate transactional emails at scale.

Email Delivery

Transactional & Marketing

Single API for all email types with smart categorization

Multi-Recipient Support

Send to up to 1,000 recipients per message with to/cc/bcc

Stored Templates

Reusable templates with simple variables, previews, and versioning

Scheduled Sending

Schedule emails up to 72 hours in advance

Batch API

Submit up to 100 message requests per batch with per-message validation

Inbound Processing

Receive and parse incoming emails via webhooks (Scale+ plans)

Deliverability

DKIM/SPF/DMARC

Automatic authentication with configurable key rotation

ARC & BIMI Support

Advanced authentication for forwarded messages and brand logos

IP Reputation Monitoring

RBL checks with circuit breaker protection

Dedicated IPs

Isolated sending reputation with automatic warm-up

Suppression Management

Automatic bounce and complaint handling

MX Validation

Pre-send recipient validation to reduce bounces

Email Grader

Score any domain or email against SPF, DKIM, DMARC, MX, and 35+ deliverability signals. Get a letter grade (A+ through F) with actionable improvement steps.

Inbox Placement

Send test emails to seed accounts across major providers and see where messages land: inbox, promotions, spam, or absent. Includes SPF/DKIM/DMARC authentication tracking and placement diagnostics.

Compliance & Security

GDPR Automation

DSR workflows for access, erasure, portability, restriction, objection, and consent records

HIPAA BAA Workflow

BAA lifecycle tooling and regulated-use implementation review on Enterprise

Audit Logging

Complete audit trail for all API operations

Data Encryption

AES-256 encryption at rest, TLS 1.3 in transit

SOC 2 Controls

Control tracking and evidence collection workflows for Enterprise reviews

Data Residency

Region and residency requirements scoped during Enterprise architecture review

Insights & Intelligence

Send-Time Insights

Engagement timing analysis and recommendations for campaign planning

Subject Line Analysis

Subject diagnostics with sentiment and spam-score signals

Content Optimization

Readability scores and improvement suggestions

Privacy-Aware Analysis

Content and deliverability checks designed for sensitive email programs

Trend Analytics

Track engagement and deliverability trends over time

Guided Recommendations

Actionable recommendations from delivery, content, and engagement signals

Analytics & Tracking

Delivery Events

Track opens, clicks, bounces, and complaints through event history

Engagement Analytics

Visualize recipient engagement patterns across your emails

Webhook Delivery

Webhook event delivery with retry and signatures

ClickHouse Analytics

Columnar analytics for high-volume event history

Custom Dashboards

Build your own views with our query API

Export & Reporting

CSV, JSON, and scheduled report delivery

Enterprise

SSO/SAML/OIDC

Enterprise identity provider integration (Scale+ plans)

White-Label

Custom branding, domains, and login pages

Sub-Accounts

Manage multiple brands with isolated data

Custom Deployment Review

Single-tenant and dedicated deployment options scoped through Enterprise review

SLA Guarantees

99.9% uptime (Scale+ plans) with error budget tracking

Priority Support

Dedicated success manager with priority async support and escalation paths

Deep Dive Into Key Features

See how ApexMail makes complex email infrastructure simple.

Build in Minutes

Developer-First API

Our RESTful API is designed for developers who value simplicity and power. Consistent SDKs, comprehensive docs, and clear request feedback.

  • Quickstart path for your first send
  • Idempotency keys for safe retries
  • Webhook signatures for security
  • Batch sending up to 100 messages
  • Delivery status updates
Read API Docs
example.py
from apexmail import ApexMail

client = ApexMail(api_key="am_live_xxx")

email = client.emails.send(
    from_="hello@company.com",
    to=["user@example.com"],
    subject="Welcome!",
  html="<h1>Hello {{name}}!</h1>",
    tags=[{"name": "type", "value": "welcome"}],
)

# Track delivery
status = client.emails.get(email.id)
print(status.status)  # 'delivered'
GDPR & HIPAA

Built-In Compliance

Compliance workflows are built into the platform. Data subject requests, consent records, encrypted storage, and audit trails are available through APIs and enterprise operations.

  • GDPR data export and erasure workflows
  • Consent tracking
  • HIPAA BAA workflow on Enterprise
  • Residency requirements scoped during review
  • Complete audit logs
Learn About Compliance
example.ts
// Handle GDPR requests automatically
await apexmail.compliance.gdpr.createRequest({
  email: 'user@example.com',
  type: 'export', // or 'delete'
});

// Check consent status
const consent = await apexmail.compliance.consent.get({
  email: 'user@example.com',
});

// Record consent
await apexmail.compliance.consent.record({
  email: 'user@example.com',
  source: 'signup_form',
  purposes: ['marketing', 'transactional'],
});
Delivery Intelligence

Deliverability Insights

Use engagement timing analysis, inbox-placement results, and content diagnostics to improve campaigns without hiding decisions behind black-box automation.

  • Send-time recommendations for campaign planning
  • Engagement trend analysis
  • Inbox placement scoring and deliverability insights
  • Re-engagement signals from event history
View Analytics Docs
example.ts
// Analyze engagement timing before scheduling
const timing = await apexmail.insights.sendTime.analyze({
  campaignId: 'cmp_weekly_digest',
  timezone: 'America/New_York',
});

const { id } = await apexmail.emails.send({
  from: 'hello@company.com',
  to: ['user@example.com'],
  subject: 'Your weekly digest',
  html: '<p>Here\'s what\'s new...</p>',
  scheduledAt: timing.recommendedWindow.start,
});

const events = await apexmail.events.list({ messageId: id });
console.log(events); // delivered, opened, clicked...
New

Email Grader

Analyze your email infrastructure and content against industry best practices. Get a comprehensive deliverability score with specific, prioritized recommendations.

  • DNS Health Check — MX, SPF, DKIM, DMARC record analysis with configuration recommendations
  • Authentication Strength — SPF alignment, DKIM key strength, DMARC policy enforcement grading
  • Content Analysis — Spam trigger detection, phishing indicators, and content quality scoring
  • Reputation Monitoring — Domain blocklist checks with confidence-weighted scoring
View API reference
terminal
curl -X POST https://api.apexmail.ee/v1/grader/check \
  -H "Content-Type: application/json" \
  -d '{"domain": "example.com"}'

Inbox Placement Testing

Know exactly where your emails land before your campaign goes live. Our Inbox Placement Testing sends test messages to a managed network of seed accounts across every major provider and reports back with per-provider placement data, authentication pass rates, and actionable optimization recommendations.

Key Capabilities

  • Seed List Management — Provision and manage seed accounts across Gmail, Outlook, Yahoo, iCloud, AOL, and Zoho with automatic health monitoring.
  • Provider Testing — Simultaneously test deliverability across 6 providers with automated SMTP sending and IMAP-based delivery verification.
  • Placement Scoring — Composite score weighing inbox rate (50%), promotions (10%), spam penalty (15%), absent penalty (10%), auth pass rate (10%), and delivery speed (5%).
  • Retention Analytics — Historical trend analysis with per-provider breakdowns to track deliverability improvements over time.
Explore the API
curl
curl -X POST https://api.apexmail.ee/v1/inbox-placement/tests \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "providers": ["gmail", "outlook", "yahoo"],
    "subject": "Q2 Campaign Preview"
  }'
Start in 5 Minutes

Ready to Ship Better Email?

ApexMail provides reliable transactional email with built-in compliance. Start free with 30,000 emails per month.

No credit card required • Free tier includes 30,000 emails/month