Stratal API Reference
    Preparing search index...

    Interface ResolvedEmailAttachment

    Resolved Email Attachment

    Attachment after resolution, ready for email provider. Content can be Buffer (for inline) or ReadableStream (for storage-based). Both nodemailer and Resend support these formats directly.

    interface ResolvedEmailAttachment {
        content: ReadableStream<any> | Buffer<ArrayBufferLike>;
        contentType: string;
        filename: string;
    }
    Index

    Properties

    content: ReadableStream<any> | Buffer<ArrayBufferLike>
    contentType: string
    filename: string