2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Sender.Mail;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
[Serializable]
|
2025-11-11 19:49:52 +00:00
|
|
|
|
public class ErpBackgroundEmailSendingJobArgs
|
2025-05-06 06:45:49 +00:00
|
|
|
|
{
|
|
|
|
|
|
public string[] To { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public KeyValuePair<string, string>? Sender { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public dynamic? Params { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? Subject { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Dictionary<string, string>? Attachments { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? TextContent { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|