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

    Interface EmailMessage

    A sendable message — a RenderedEmail plus addressing. The input to a provider.

    interface EmailMessage {
        subject: string;
        html: string;
        text?: string;
        to: string | string[];
        from?: string;
        replyTo?: 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