Skip to main content
← Back to course

What Resend Is (and Why Transactional Email Is Its Own Problem)

Sending an email from your application sounds simple — until you learn how much of the internet is built to distrust email by default. Resend is a developer-focused email API built specifically to solve deliverability, not just "send an HTTP request with an email in it."

Transactional email means email your application sends in response to a real action — a password reset, an order confirmation, a signup verification code. This is distinct from marketing email (bulk newsletters, promotional campaigns) — different tools, different sending patterns, different reputation considerations.

Deliverability — actually landing in the inbox, not spam — is the real, hard problem. Anyone can technically send an email; getting it reliably into the recipient's primary inbox, not flagged as spam or silently dropped, requires proper domain authentication, sending reputation, and following real email standards — this is what a service like Resend is actually built to handle.

Resend provides a clean API and SDKs for major languages/frameworks, with first-class support for sending React-based email templates (@react-email/components) — genuinely pleasant developer experience compared to hand-writing raw MIME/HTML email strings.

This platform's own security note about corporate email scanners applies directly here. AI University's own auth emails use typed OTP codes rather than magic links specifically because corporate scanners (INKY, Microsoft Defender) can pre-consume single-use links — a real, concrete lesson from building on this exact category of tool, worth knowing before you design your own transactional email flows.

Never send from an unauthenticated domain. Sending "from" a domain without proper DNS authentication (covered next lesson) is both a deliverability problem (your email likely goes to spam) and, in the worst case, something that can be abused for spoofing — proper setup isn't optional polish, it's foundational.

Why this matters for you

Understanding that deliverability is the real problem — not "can I technically send an email" — is what separates using a tool like Resend well from being surprised when your emails silently end up in spam.

▶️ Before the next lesson

Create a free Resend account (resend.com) if you don't already have one — the next lesson has you authenticate a real sending domain.