backend/types/config/mailer.ts
creations 86be889ede
Some checks failed
Code quality checks / biome (push) Failing after 22s
actually start on mailing, fix email regex
2025-06-10 16:34:15 -04:00

16 lines
293 B
TypeScript

type MailerConfig = {
address: string;
port: number;
from: string;
username: string;
password: string;
secure: boolean;
pool: boolean;
connectionTimeout: number;
socketTimeout: number;
maxConnections: number;
maxMessages: number;
replyTo: string;
};
export type { MailerConfig };