export interface SendingMailDto {
    to: string;
    subject: string;
    text: string;
    html: string;
}
