mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-21 17:26:42 +02:00
10 lines
392 B
TypeScript
10 lines
392 B
TypeScript
export { EmailModule } from './email.module';
|
|
export { EmailService } from './email.service';
|
|
export type {
|
|
SendEmailOptions,
|
|
PasswordResetEmailOptions,
|
|
OrganizationInviteEmailOptions,
|
|
} from './email.service';
|
|
|
|
// Standalone email client for use outside NestJS DI (e.g., Better Auth config)
|
|
export { sendEmail, sendPasswordResetEmail, sendOrganizationInviteEmail } from './brevo-client';
|