Skip to content
All features
integrationspackages/integrations/email

email package

Render React Email templates, dispatch through Resend / SES / SMTP. One sendEmail(template, props, recipient) for every transactional flow.

Open docs
Stability
Stable
Scope
Global
Boundary
packages/integrations/email
emailpackages/integrations/email
Provider-agnostic
Available providers
ResendActive
SESstandby
Postmarkstandby
SMTPstandby
Inbound requestemail
{ to: "[email protected]", subject: "Welcome" }
Adapter resolve2ms
email Dispatch66ms
Acked4ms
x

Provider

Resend

Latency p50

77 ms

Success rate

97%

+0.8%

Volume today

4,187

packages/integrations/emailprovider-agnostic
Usageemail.tsx
typescript
email.tsx
1import { sendEmail } from "@nebutra/email";
2import { WelcomeEmail } from "@/emails/welcome";
3
4await sendEmail({
5  to: user.email,
6  subject: "Welcome to Nebutra",
7  react: <WelcomeEmail name={user.name} orgName={org.name} />,
8  // Routes via Resend / SES / SMTP based on env.
9});