MailQueue

This commit is contained in:
2026-01-20 16:47:24 +01:00
parent a5fe908034
commit d40e2e8daa
13 changed files with 181 additions and 71 deletions

View File

@ -0,0 +1,10 @@
namespace StandManager.Service.Mail;
public class Email
{
public string From { get; set; }
public List<string> To { get; set; }
public List<string>? Cc { get; set; }
public string Subject { get; set; }
public string Body { get; set; }
}