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,8 @@
namespace Zentral.API.Apps.Communications.Dtos;
public class TestEmailDto
{
public string To { get; set; } = string.Empty;
public string Subject { get; set; } = "Test Email from Zentral";
public string Body { get; set; } = "This is a test email sent from Zentral Communications Module.";
}