interface CreateEmailRequestAttachment {
    content: string;
    name: string;
    type: string;
}

Properties

Properties

content: string

Content of the attachment encoded in base64.

name: string

Filename of the attachment.

type: string

MIME type of the attachment.