Se agregó el módulo para mandar emails masivos

This commit is contained in:
2025-02-28 14:44:40 -06:00
parent ea1ad1737e
commit cc8a31319a
11 changed files with 225 additions and 4 deletions
+6 -1
View File
@@ -2,8 +2,13 @@ import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { MailModule } from './mail/mail.module';
import {ExcelModule} from './excel/excel.module'
@Module({
imports: [MailModule],
imports: [
MailModule,
ExcelModule,
],
controllers: [AppController],
providers: [AppService],
})