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

    Interface StoredEmail

    A stored (mocked) email — what a local mailbox sink persists INSTEAD of sending.

    interface StoredEmail {
        subject: string;
        html: string;
        text?: string;
        to: string | string[];
        from?: string;
        replyTo?: string;
        at: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    subject: string
    html: string
    text?: string
    to: string | string[]
    from?: string

    override the provider's default From.

    replyTo?: string
    at: string

    ISO timestamp the message was captured.