feat: mejorar el envío de correos electrónicos y agregar validaciones en el adaptador de notificaciones

This commit is contained in:
2026-08-19 14:51:42 -03:00
parent 18fa523fbe
commit c8029a6762
5 changed files with 87 additions and 93 deletions
@@ -6,8 +6,11 @@ export enum NOTIFICATION_TYPES {
export type NotificationDataEmail = {
email: string;
subject: string;
message: string;
subject?: string;
message?: string;
templateId?: string;
context?: Record<string, unknown>;
substitutions?: Record<string, string | number | boolean>;
};
export type NotificationDataWap = {