@mxraven/mail - v0.2.0
    Preparing search index...

    Interface Envelope

    The SMTP envelope for a raw message, independent of the message headers.

    interface Envelope {
        from?: string;
        to: readonly string[];
    }
    Index
    from?: string

    The envelope sender. An empty or omitted value requests a null reverse-path, which is appropriate for bounce messages.

    to: readonly string[]

    At least one envelope recipient.