ByflareMX Logo
ByflareMX
ByflareMX Logo

ByflareMX — Email Routing for Builders

Fast, private, programmable email delivery and forwarding. Built for developers, startups, and privacy-first users.

🚀 What You Can Do With ByflareMX

💸 ByflareMX Pricing (Beta)

Free

$0

  • 1 domain
  • 100 aliases
  • Receive-only
  • Basic forwarding
  • Limited logs

Pro

$10/mo

  • 5 domains
  • 2,000 aliases
  • Send + Receive
  • API access
  • Webhooks (basic)
  • 7-day log retention

Team

$25/mo

  • 15 domains
  • 10,000 aliases
  • Priority send queue
  • 30-day log retention
  • SPF/DKIM auto-check
  • Advanced Webhooks
  • SMTP access

⚠️ Beta pricing is subject to change before public launch.

🧑‍💻 Built for Developers

📦 Send mail via CLI

byflaremx send \
  --from support@yourdomain.com \
  --to user@example.com \
  --subject "Welcome to our app!" \
  --text "Thanks for signing up. Let us know if you need anything."

🟩 Send mail with Node.js SDK

import { Byflare } from "@byflare/sdk";

const client = new Byflare("YOUR_API_KEY");

await client.send({
  from: "support@yourdomain.com",
  to: "user@example.com",
  subject: "Welcome",
  text: "Thanks for joining us!"
  html: "<html><body><h1>Welcome!</h1><p>Thanks for joining us. Let us know if you have questions.</p></body></html>"
});

🐍 Send mail with Python SDK

from byflare import Byflare

client = Byflare("YOUR_API_KEY")

client.send(
  from_="support@yourdomain.com",
  to="user@example.com",
  subject="Welcome!",
  text="Thanks for signing up!"
)

📡 Webhook Payload (on receive)

{
  "event": "email_received",
  "message_id": "msg_abc123",
  "to": "help@yourdomain.com",
  "from": "client@example.com",
  "subject": "Support Request",
  "text": "Hey, I need help with my account..."
  "html": "<html><body><h1>Welcome!</h1><p>Thanks for joining us. Let us know if you have questions.</p></body></html>"
}

📬 Get Early Access

We're launching soon. Join the waitlist and stay updated.