Type Alias EmailSendMessage

EmailSendMessage: {
    attachments?: EmailSendAttachment[];
    body: EmailSendBody;
    bypass_complained?: 0 | 1;
    bypass_global?: 0 | 1;
    bypass_unavailable?: 0 | 1;
    bypass_unsubscribed?: 0 | 1;
    from_email?: string;
    from_name?: string;
    global_language?: Language;
    global_metadata?: Record<string, string>;
    global_substitutions?: Record<string, unknown>;
    headers?: Record<string, string>;
    inline_attachments?: EmailSendAttachment[];
    options?: EmailSendOptions;
    recipients: EmailSendRecipient[];
    reply_to?: string;
    reply_to_name?: string;
    skip_unsubscribe?: number;
    subject: string;
    tags?: string[];
    template_engine?: TemplateEngine;
    template_id?: string;
    track_links?: 0 | 1;
    track_read?: 0 | 1;
}