feat: implement communications module with SMTP settings, email logging, and frontend UI

This commit is contained in:
2025-12-12 11:19:25 +01:00
parent dedd4f4e69
commit 9174e75be0
19 changed files with 727 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
using System;
namespace Zentral.API.Apps.Communications.Dtos;
public class EmailLogDto
{
public int Id { get; set; }
public DateTime SentDate { get; set; }
public string Sender { get; set; } = string.Empty;
public string Recipient { get; set; } = string.Empty;
public string Subject { get; set; } = string.Empty;
public string Status { get; set; } = string.Empty;
public string? ErrorMessage { get; set; }
}