@suluk/email - v0.2.0
    Preparing search index...

    Interface SendResult

    @suluk/email — the missing EmailProvider binding + a per-event/per-locale branded template set. The app RENDERS a message (pure, branded, localized via @suluk/i18n) and SENDS it through a swappable provider (consoleProvider in dev; a Workers-safe resendProvider in prod). Never a hosted mailer — the provider is a thin binding (the @suluk/builder email slot impl). CANDIDATE tooling.

    interface SendResult {
        ok: boolean;
        id?: string;
        error?: string;
        costMicroUsd?: number;
    }
    Index

    Properties

    ok: boolean
    id?: string

    the provider's message id, when sent.

    error?: string
    costMicroUsd?: number

    the third-party send cost in µ$, for @suluk/cost metering (advisory).