Fix: Configuración SMTP
All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 6m46s

- No se toma la configuración SMTP del .env por falla de lecturas.
- Se incluyen las configuraciones en appsettings.json
This commit is contained in:
2025-08-12 11:18:30 -03:00
parent 5781713b13
commit da50c052f1
5 changed files with 32 additions and 37 deletions

View File

@@ -16,11 +16,11 @@
},
"AllowedHosts": "*",
"MailSettings": {
"SmtpHost": "",
"SmtpPort": 0,
"SenderName": "",
"SenderEmail": "",
"SmtpUser": "",
"SmtpPass": ""
"SmtpHost": "192.168.5.201",
"SmtpPort": 587,
"SenderName": "Club - Diario El Día",
"SenderEmail": "alertas@eldia.com",
"SmtpUser": "alertas@eldia.com",
"SmtpPass": "@Alertas713550@"
}
}