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

    Interface EmailProvider

    The swappable binding. An app picks one impl; the template set is provider-agnostic.

    interface EmailProvider {
        id: string;
        send(message: EmailMessage): Promise<SendResult>;
    }
    Index

    Properties

    Methods

    Properties

    id: string

    a stable id (e.g. "resend", "console") — matches the @suluk/builder provider-slot impl id.

    Methods