Type Alias EmailSendBody

EmailSendBody: ({
    plaintext: string;
} | {
    html: string;
}) & {
    amp?: string;
}