ohmyform/api/src/mail/dto/options.dto.ts

13 lines
123 B
TypeScript

export class OptionsDto {
template: string;
language?: string;
to: string;
cc?: string[];
bcc?: string[];
}