@ptkl/sdk - v1.3.4
    Preparing search index...

    Request payload for sending an email.

    type SendEmailRequest = {
        attachments?: AttachmentInput[];
        bcc?: string[];
        body: string;
        cc?: string[];
        reply_to?: string;
        sender_name?: string;
        subject: string;
        to: string[];
    }
    Index

    Properties

    attachments?: AttachmentInput[]

    File attachments

    bcc?: string[]

    BCC email addresses

    body: string

    Email body in HTML (required)

    cc?: string[]

    CC email addresses

    reply_to?: string

    Reply-to email address

    sender_name?: string

    Custom sender display name

    subject: string

    Email subject (required)

    to: string[]

    Recipient email addresses (required)