Interface CreateEmailTemplateBody

interface CreateEmailTemplateBody {
    body: string;
    plaintext_body?: string;
    preheader?: string;
    should_inline_css?: boolean;
    subject: string;
    tags?: string[];
    template_name: string;
}

Hierarchy (view full)

Properties

body: string
plaintext_body?: string
preheader?: string
should_inline_css?: boolean
subject: string
tags?: string[]
template_name: string