import { AttachmentDto } from '../attachment.dto'; /** * DTO for email sender * Used to define the details for sending an email */ export declare class EmailSenderDto { /** * The full name of the sender */ fullName: string; /** * The email subject * Length restriction from 1 to 500 characters */ subject: string; /** * The message content * Length restriction from 1 to 50000 characters */ message: string; /** * File attachments (optional) */ attachments?: AttachmentDto[]; }