Send Emails Using Your Own Email Account – No SMTP Setup
3drake acts as a secure middleware between your app and Gmail, Outlook, or custom SMTP servers.
Replace API_KEY and connection_id.
curl -X POST https://3drake.com/v1/send \
-H "Authorization: Bearer API_KEY" \
-H "Content-Type: application/json" \
-d '{
"connection_id": "conn_123",
"to": ["user@example.com"],
"subject": "Hello from 3drake",
"text": "Email sent via your own provider!"
}'
How it works
Connect a provider once, then send emails through one consistent API.
Add a provider connection
Store Gmail, Outlook, or SMTP credentials as a per-user connection. Keep your app’s codebase provider-agnostic.
Call one send endpoint
Your app sends a message payload. 3drake routes it to the correct provider and handles provider quirks.
Track status & troubleshoot
Delivery logs help you debug fast: request payload, provider response, errors, and timestamps.
Supported providers
Standardize email sending across providers with one API and consistent responses.
*Capability matrix is illustrative for the landing page. Your implementation may vary.
Why 3drake
Built for teams that want reliable email sending without becoming email infrastructure experts.
Keep credentials scoped per user, limit access via API keys, and reduce blast radius with isolation-friendly architecture.
- Credential vault pattern
- Least-privilege tokens
- Audit-friendly traces
Centralized logs for requests and provider responses help you debug deliverability issues quickly.
- Status + latency
- Error codes & retries
- Per-user filtering
A small surface area that’s easy to integrate into SaaS products, CRMs, and internal workflows.
- Consistent request/response
- Provider-agnostic payloads
- Designed for automation
Pricing
Simple plans for email infrastructure. You pay for secure routing, logs, and control — not deliverability.
- Up to 2 connections
- 1,000 send requests / month
- Logs retention: 7 days
- Basic rate limits
- Community support
Ideal for testing your integration before going production.
- Up to 10 connections
- 100,000 send requests / month
- Logs retention: 90 days
- Higher rate limits + retries
- Priority support (email)
- Up to 50 connections
- 1,000,000 send requests / month
- Logs retention: 365 days
- Team members + API key scopes
- Advanced rate limits + export logs
Best for ops teams, CRM automation, and higher-volume internal messaging.
- Unlimited connections & custom limits
- Dedicated workers / isolated tenants
- SSO/SAML (optional), audit exports
- Custom retention & compliance needs
- SLA + priority engineering support
Need on-prem, strict compliance, or custom routing policies? We can tailor it.
3drake is an email gateway API — secure credential handling, unified send endpoint, logs, rate limits, and operational controls.
- Unified provider routing (Gmail/Outlook/SMTP)
- Secure per-user credential vault pattern
- Delivery logs + troubleshooting signals
3drake does not sell inbox placement or deliverability. Emails are sent using your users’ own providers. Limits are applied to protect the system from abuse and ensure reliable throughput.
Get Started
This landing page is backend-free. Hook these buttons up to your onboarding later.
Start by connecting your first email provider, then send a test email to verify your setup.
What your app might send to 3drake.
{
"connection_id": "conn_123",
"from_name": "Acme App",
"to": ["user@example.com"],
"subject": "Welcome!",
"html": "<h1>Hello</h1><p>Thanks for signing up.</p>",
"text": "Hello — Thanks for signing up."
}
FAQ
Do I need to configure SMTP?
Not if your users connect Gmail/Outlook—3drake abstracts provider setup. For custom SMTP, you’ll still provide host/port credentials.
Is 3drake a marketing email platform?
It’s an email gateway API. You control what you send; 3drake focuses on routing, security, and observability.
Do you store email content?
Landing-page text only: you can choose to store minimal metadata for logs (status, timestamps, error codes). Content storage is optional by design.
Can I use it for internal tools?
Yes—internal notifications, admin workflows, CRMs, and ops tools are a great fit.