ISPO SDK
    Preparing search index...

    Interface GoogleMailMessageInput

    Markdown

    Structured compose input; the host builds the RFC 2822 payload from it and never accepts caller-supplied raw MIME.

    interface GoogleMailMessageInput {
        attachments?: GoogleMailAttachmentInput[];
        bcc?: string[];
        cc?: string[];
        html?: string;
        replyToMessageId?: string;
        subject?: string;
        text?: string;
        to?: string[];
    }
    Index

    Files rows to attach, resolved to bytes host-side. The host bounds these at 10 attachments and 25 MB of total source bytes per message and refuses past either — it never truncates the set.

    bcc?: string[]
    cc?: string[]
    html?: string
    replyToMessageId?: string

    Reply to a message seen through messages.read on the same account. The host resolves its Message-ID/References headers and thread id; the caller never writes a mail header.

    subject?: string
    text?: string
    to?: string[]