23 lines
881 B
C#
23 lines
881 B
C#
namespace PlotLine.Models;
|
|
|
|
public sealed class EmailQueueItem
|
|
{
|
|
public long EmailQueueID { get; set; }
|
|
public string ToEmail { get; set; } = string.Empty;
|
|
public string? ToName { get; set; }
|
|
public string FromEmail { get; set; } = string.Empty;
|
|
public string? FromName { get; set; }
|
|
public string Subject { get; set; } = string.Empty;
|
|
public string PlainTextBody { get; set; } = string.Empty;
|
|
public string? HtmlBody { get; set; }
|
|
public string Status { get; set; } = "Pending";
|
|
public int AttemptCount { get; set; }
|
|
public int MaxAttempts { get; set; } = 5;
|
|
public DateTime NextAttemptUtc { get; set; }
|
|
public DateTime? LastAttemptUtc { get; set; }
|
|
public DateTime? SentUtc { get; set; }
|
|
public string? LastError { get; set; }
|
|
public DateTime CreatedUtc { get; set; }
|
|
public DateTime UpdatedUtc { get; set; }
|
|
}
|