Member Junction
    Preparing search index...

    Represents an attachment on a message

    type MessageAttachment = {
        ContentID?: string;
        ContentType: string;
        Filename: string;
        ID: string;
        IsInline?: boolean;
        Size: number;
    }
    Index

    Properties

    ContentID?: string

    Content ID for inline attachments

    ContentType: string

    The MIME type of the attachment

    Filename: string

    The filename of the attachment

    ID: string

    The unique ID of the attachment

    IsInline?: boolean

    Whether this is an inline attachment (embedded in message body)

    Size: number

    The size of the attachment in bytes