Home Platform Developers Security & Compliance Pricing About Contact Demo Dashboard
SOC 2 Type II Certified Infrastructure

Transactional Messaging
Built for Scale

RelayCore delivers enterprise-grade, permission-based transactional messaging infrastructure for SaaS platforms, fintech applications, and enterprise systems. SMTP relay, REST API, real-time monitoring β€” all in one secure cloud platform.

99.99%
Platform Uptime SLA
2.4B+
Emails Delivered
<0.1%
Complaint Rate
185+
Enterprise Clients
relaycore-api Β· POST /v1/messages
$ curl https://api.relaycore.us/v1/messages \
-H "Authorization: Bearer rc_live_..." \
-d '{'
"to": "user@example.com",
"from": "noreply@app.com",
"subject": "Verify your account",
"type": "transactional",
"tags": ["otp", "auth"]
'}'
// Response
{
"id": "msg_2xKrP9QbNmZ4a1",
"status": "queued",
"delivery_eta": 280,
"compliance": "verified"
}
βœ“ Delivered in 312ms 
Trusted by engineering teams at
StreamVault
NovaPay
HelixHR
DataForge
CloudAxis
PrismLabs
Orbitera

Everything you need for transactional messaging

RelayCore is purpose-built for system-generated, permission-based transactional communications. Not marketing. Not bulk sending. Infrastructure for SaaS.

πŸ”Œ
RESTful Messaging API

Send transactional messages via simple REST calls. SDKs for Node.js, Python, Go, PHP, Ruby, and Java. Webhook events, idempotent requests, and sub-second delivery confirmation.

πŸ“Š
Real-Time Delivery Monitoring

Live dashboards showing delivery rates, bounce classification, complaint tracking, and queue health. Instant alerts when metrics exceed thresholds.

πŸ›‘οΈ
Suppression List Automation

Automatic opt-out enforcement. Bounce and complaint suppression applied system-wide in real time. Full suppression list export and API management.

βœ…
Opt-In Verification System

Double opt-in workflow builder. Consent timestamp recording. Full audit log for compliance evidence. Recommended for all recipient segments.

πŸ””
Account Notification Engine

Templated delivery for OTP codes, password resets, account alerts, billing notifications, and system events. Low-latency, sub-500ms queue processing.

🏠
Dedicated IP Infrastructure

Enterprise plans include dedicated IP pools for reputation isolation. Automated warmup scheduling, blacklist monitoring, and feedback loop registration with major ISPs.

πŸ“ˆ
Bounce & Complaint Tracking

Hard and soft bounce classification. ISP-level complaint rate monitoring. Automatic account alerts at 0.08% complaint threshold β€” well below industry danger zones.

πŸ”
Email Authentication Guidance

Step-by-step SPF, DKIM, and DMARC configuration guides. DNS verification tooling. Authentication health scoring included in all plans.

Compliance is not optional. It's our foundation.

RelayCore operates on a strict permission-based policy. Every recipient must be a fully opted-in user of your platform. Purchased lists, scraped contacts, and third-party data are strictly prohibited and result in immediate account suspension.

βœ“
CAN-SPAM Act
βœ“
GDPR Compliant
βœ“
CCPA Compliant
βœ“
Double Opt-In Support
βœ“
One-Click Unsubscribe
βœ“
Anti-Abuse Monitoring
βœ“
Suppression Automation
βœ“
SOC 2 Type II

What engineering teams say

β˜…β˜…β˜…β˜…β˜…

"We migrated our transactional email stack to RelayCore six months ago. Delivery rates jumped from 94% to 99.2%, and the compliance infrastructure gave our legal team the confidence they needed for our SOC 2 audit."

MR
Marcus Rivera
CTO Β· StreamVault Inc.
β˜…β˜…β˜…β˜…β˜…

"As a fintech, our OTP and account alert infrastructure is mission-critical. RelayCore's sub-400ms delivery, dedicated IPs, and real-time monitoring made them the obvious choice. Outstanding API quality."

SK
Sarah Kim
VP Engineering Β· NovaPay
β˜…β˜…β˜…β˜…β˜…

"The suppression list automation and bounce management alone saved us from a major deliverability crisis. RelayCore's team helped us implement double opt-in across our 300k user base without a single incident."

DL
David Liang
Founder & CEO Β· HelixHR

Ready to build on enterprise infrastructure?

Start with 10,000 free transactional sends per month. No credit card required. Full API access from day one.

The Complete Transactional
Messaging Stack

RelayCore provides every component of a production transactional messaging infrastructure β€” from secure SMTP relay and REST API to real-time analytics and compliance automation.

MESSAGE DELIVERY ARCHITECTURE

πŸ–₯️
Your App
REST API / SMTP
β†’
βš™οΈ
Relay Gateway
Auth + Routing
β†’
πŸ›‘οΈ
Compliance Engine
Suppression + OPT-IN
β†’
πŸ“€
Send Pool
Dedicated IPs
β†’
πŸ“¬
Recipient
ISP / Inbox
πŸ“‘

SMTP Relay

Enterprise SMTP infrastructure with TLS 1.3 encryption, DKIM signing, and IP reputation management. Connect your application via standard SMTP ports or our enhanced relay with higher throughput limits.

  • Ports 25, 587, 465 supported
  • STARTTLS and SSL/TLS
  • Authentication: API key or credentials
  • Up to 1,000 msg/sec throughput
πŸ”Œ

REST API

JSON-based RESTful API with idempotent sends, batch endpoints, webhook callbacks, and real-time delivery status. Rate limits are generous and scale with your plan tier.

  • SDKs: Node, Python, Go, PHP, Ruby, Java
  • Webhook event delivery
  • Batch send up to 1,000 msg/request
  • OpenAPI 3.0 specification
πŸ“Š

Analytics & Monitoring

Real-time dashboards with delivery rates, bounce classification, complaint monitoring, and queue health. Exportable reports in CSV, JSON, and PDF formats.

  • Real-time event stream
  • ISP-level performance breakdown
  • Alerting via email, Slack, PagerDuty
  • 90-day data retention

System Status

All Systems Operational
SMTP Relay Network
Operational
REST API (v1)
Operational
Delivery Pipeline
Operational
Compliance Engine
Operational
Analytics Dashboard
Operational
Webhook Delivery
Operational

API Reference

Build on RelayCore's transactional messaging API. RESTful, predictable, and fully documented.

Base URL: https://api.relaycore.us/v1 JSON + HTTPS OpenAPI 3.0

API Endpoints

POST /v1/messages Send transactional message
GET /v1/messages/{id} Get message status
POST /v1/messages/batch Send up to 1,000 messages
GET /v1/suppression List suppressed addresses
POST /v1/suppression Add to suppression list
DELETE /v1/suppression/{email} Remove from suppression
GET /v1/domains List verified sending domains
POST /v1/domains/verify Verify domain DNS records
GET /v1/webhooks List webhook endpoints
PATCH /v1/webhooks/{id} Update webhook config
GET /v1/stats/delivery Delivery rate metrics
GET /v1/health API health check

Send a Message

Node.js
const RelayCore = require('@relaycore/sdk');

const client = new RelayCore({
  apiKey: process.env.RELAYCORE_API_KEY
});

const result = await client.messages.send({
  to: 'user@example.com',
  from: 'auth@yourapp.com',
  fromName: 'YourApp Security',
  subject: 'Your verification code',
  type: 'transactional',
  html: `<p>Your OTP: <strong>${'{'}otp{'}'}</strong></p>`,
  variables: { otp: 482901 },
  tags: ['otp', 'authentication']
});

console.log(result.id); // msg_2xKrP9QbNmZ4a1
console.log(result.status); // queued

Webhook Events

Webhook Payload
{
  "event": "message.delivered",
  "id": "evt_9xMqA3YbKn1Z",
  "timestamp": "2025-03-14T19:22:11Z",
  "data": {
    "message_id": "msg_2xKrP9QbNmZ4a1",
    "to": "user@example.com",
    "delivered_at": "2025-03-14T19:22:10Z",
    "latency_ms": 312,
    "ip": "209.85.220.41",
    "isp": "Google (Gmail)"
  }
}

Official SDKs

🟒
Node.js
npm install @relaycore/sdk
🐍
Python
pip install relaycore
🐹
Go
go get relaycore-go
🐘
PHP
composer require relaycore

Built Secure.
Compliance-First.

RelayCore's infrastructure is designed from the ground up for enterprise security and regulatory compliance. Permission-based delivery is not a feature β€” it is the product.

πŸ”’

Transport Security

All API communication is secured with TLS 1.3. SMTP relay connections enforce STARTTLS with certificate validation. DKIM signing is applied to all outbound messages with 2048-bit RSA keys. SPF records are auto-generated for your sending domains.

πŸ—οΈ

Infrastructure Security

Deployed across multiple AWS regions with auto-failover. All data encrypted at rest with AES-256. Network segmentation with VPC isolation. Regular penetration testing by independent third-party security firms. Zero-trust access model for all internal systems.

πŸ“‹

Compliance Certifications

SOC 2 Type II certified. Annual GDPR compliance audits. CCPA-aligned data handling practices. CAN-SPAM compliant by design. EU-US Data Privacy Framework participant. HIPAA-compatible infrastructure available on Enterprise plans.

πŸ‘οΈ

Anti-Abuse Monitoring

24/7 automated abuse detection monitors complaint rates, bounce patterns, and send behavior anomalies. Accounts triggering thresholds (complaint rate >0.1%, bounce rate >5%) receive automated warnings and throttling. Repeat violations result in suspension.

Regulatory Compliance Matrix

How RelayCore meets the requirements of major data protection and anti-spam regulations.

Regulation Key Requirement RelayCore Implementation Status
CAN-SPAM Act Opt-out mechanism, accurate headers, physical address One-click unsubscribe enforced, suppression automation, required header validation Compliant
GDPR (EU) Lawful basis, data subject rights, processing records, DPA Consent recording, right-to-erasure API, processing logs, DPA available, EU data residency option Compliant
CCPA (California) Right to know, opt-out of sale, data deletion Data export API, no data resale, deletion request workflow, privacy policy aligned Compliant
CASL (Canada) Express consent for commercial messages Double opt-in workflow, consent timestamp recording, audit trails Compliant
SOC 2 Type II Security, availability, confidentiality controls Annual audit by accredited firm. Report available under NDA for Enterprise clients Certified
HIPAA PHI handling, BAA, access controls BAA available on Enterprise plans. PHI transmission encrypted. Audit logging enabled. Enterprise Only

Email Authentication Setup

SPF RECORD
v=spf1 include:spf.relaycore.us ~all

Add as TXT record to your domain's DNS. Authorizes RelayCore's IP ranges to send on your behalf.

DKIM RECORD
rc-2025._domainkey.yourdomain.com CNAME dkim.relaycore.us

CNAME delegation allows RelayCore to rotate DKIM keys automatically for maximum security.

DMARC RECORD
v=DMARC1; p=quarantine; rua=mailto:dmarc@relaycore.us; pct=100

DMARC enforcement policy. RelayCore aggregates reports and surfaces issues in your dashboard.

Transparent, Usage-Based Pricing

No setup fees. No hidden charges. Pay for what you send. All plans include full API access, compliance tools, and real-time monitoring.

Starter
$ 0 /month

For developers building and testing transactional messaging integrations.

10,000 sends/month included
  • βœ“Full REST API access
  • βœ“SMTP relay support
  • βœ“5 verified sending domains
  • βœ“Basic delivery analytics
  • βœ“Suppression list management
  • βœ“Opt-in verification tools
  • βœ“Community support
  • βœ“Shared IP pools
  • βœ“30-day data retention
Enterprise
Custom

For high-volume platforms, fintech companies, and enterprises with advanced compliance requirements.

5M+ sends/month Β· Volume discounts apply
  • βœ“Everything in Growth
  • βœ“Dedicated IP pools + warmup
  • βœ“Unlimited sending domains
  • βœ“SOC 2 report (under NDA)
  • βœ“HIPAA BAA available
  • βœ“EU data residency option
  • βœ“24/7 dedicated support + SLA
  • βœ“Custom data retention
  • βœ“Onboarding + migration support

Common Questions

Can I send promotional emails?

No. RelayCore is purpose-built for transactional communications only β€” OTPs, account notifications, password resets, billing alerts, and system-generated messages. Promotional or marketing emails are prohibited.

What counts as a transactional email?

Transactional emails are triggered by a user action or system event: account verification, OTP codes, password resets, purchase confirmations, shipping notifications, and account alerts.

Do you offer a free trial?

Yes. The Starter plan includes 10,000 sends per month permanently free. Growth plans include a 14-day trial with full feature access. No credit card required to start.

How is billing calculated?

Plans include a monthly send quota. Additional sends are billed at the per-1K rate shown. You'll receive an alert at 80% quota usage. Billing is monthly, and you can upgrade, downgrade, or cancel anytime.

Building Trustworthy Messaging Infrastructure

RelayCore was founded in 2020 by a team of infrastructure engineers who believed that transactional email delivery should be fast, reliable, compliant, and β€” most importantly β€” ethical.

We built RelayCore after experiencing firsthand how difficult it was to find an email infrastructure provider that placed compliance and permission-based sending at the center of their product β€” not as an afterthought.

Today, RelayCore powers the transactional messaging infrastructure for over 185 enterprise clients across SaaS, fintech, healthcare technology, and e-commerce β€” processing over 2.4 billion transactional messages annually.

2020
Founded
185+
Enterprise Clients
2.4B+
Messages Delivered
28
Team Members

What drives us

🎯

Compliance First

Permission-based messaging isn't a constraint on our platform β€” it is the platform. Every product decision starts with "does this support ethical, consensual communication?"

πŸ”¬

Radical Reliability

Your users expect their OTP within seconds. We obsess over every millisecond of latency, every failover scenario, and every edge case in delivery infrastructure.

🀝

Developer Empathy

APIs should be a joy to use. Documentation should answer questions before they're asked. Support should feel like talking to a teammate who knows the codebase.

The team

JM
James Mercer
CEO & Co-founder
AT
Aisha Thompson
CTO & Co-founder
DK
Daniel Kovacs
VP of Engineering
LC
Lisa Chen
Head of Compliance

Company Information

Legal Name: RelayCore, Inc.

State of Incorporation: Delaware, USA

Business Registration: EIN 87-3341092

Delaware SOS File No.: 7824103

Headquarters: Austin, Texas

Founded: 2020

Website: relaycore.us

Support: support@relaycore.us

Get in Touch

Whether you're evaluating RelayCore for your platform or need support, our team is ready to help.

πŸ“
Headquarters
RelayCore, Inc.
3300 N Interstate Hwy 35, Suite 500
Austin, TX 78705
United States
βœ‰οΈ
Email Support
General: support@relaycore.us
Sales: sales@relaycore.us
Compliance: compliance@relaycore.us
Abuse: abuse@relaycore.us
⏱️
Support Hours
Growth: Mon–Fri, 9AM–6PM CT
Enterprise: 24/7 dedicated support
Emergency: 24/7 via PagerDuty escalation

Send us a Message

Overview Dashboard
Last 30 days Β· Updated just now
99.99% Uptime
Delivery Rate
98.7%
↑ +0.3% vs last month
Bounce Rate
1.8%
↓ βˆ’0.2% β€” healthy
Complaint Rate
0.04%
↓ Below 0.1% threshold βœ“
Sends This Month
247K
49% of 500K quota
Delivery Rate β€” Last 30 Days
98.7% avg
17142130
Bounce & Complaint Rates
All within limits
● Bounces ● Complaints

Live Activity Feed

LIVE
API Usage
v1
POST /messages 24,718 req
GET /messages/{id} 8,432 req
GET /stats 1,204 req
POST /batch 318 req
Suppression List
4,821
Total suppressed addresses
Hard Bounces: 2,104
Complaints: 438
Manual: 2,279