
ByflareMX — Email Routing for Builders
Fast, private, programmable email delivery and forwarding. Built for developers, startups, and privacy-first users.
Fast, private, programmable email delivery and forwarding. Built for developers, startups, and privacy-first users.
$0
$10/mo
$25/mo
⚠️ Beta pricing is subject to change before public launch.
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."
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>"
});
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!"
)
{
"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>"
}
We're launching soon. Join the waitlist and stay updated.