using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MP.Data { public class MailKitMailData { // Receiver public List To { get; set; } public List Bcc { get; set; } public List Cc { get; set; } // Sender public string? From { get; set; } public string? DisplayName { get; set; } public string? ReplyTo { get; set; } public string? ReplyToName { get; set; } // Content public string Subject { get; set; } public string? Body { get; set; } //// Attach (opzionale) //public IFormFileCollection? Attachments { get; set; } } }