Sporades SDK API
    Preparing search index...

    Type Alias MailSendInput

    Common provider-independent message shape accepted by ctx.mail.send(...).

    provider is validated for the configured SMTP vendor and translated into approved MIME headers. It is not an arbitrary provider API payload and cannot override addressing, content, authentication, or transport settings.

    type MailSendInput = {
        bcc?: MailAddress | MailAddress[];
        cc?: MailAddress | MailAddress[];
        from?: MailAddress;
        htmlBody?: string;
        provider?: JsonObject;
        replyTo?: MailAddress;
        subject: string;
        textBody?: string;
        to: MailAddress | MailAddress[];
    }
    Index
    htmlBody?: string
    provider?: JsonObject
    replyTo?: MailAddress
    subject: string
    textBody?: string