Files
mixtape/zero.Core/Entities/MailTemplate.cs
T
2021-05-04 17:23:52 +02:00

48 lines
1.3 KiB
C#

using zero.Core.Attributes;
namespace zero.Core.Entities
{
[Collection("MailTemplates")]
public class MailTemplate : ZeroEntity
{
/// <summary>
/// Email address of the sender (overrides email from application)
/// </summary>
public string SenderEmail { get; set; }
/// <summary>
/// Name of the sender (overrides name from application)
/// </summary>
public string SenderName { get; set; }
/// <summary>
/// Email address of the recipient. This is only necessary for templates which do not have a dynamic recipient (e.g. reports).
/// </summary>
public string RecipientEmail { get; set; }
/// <summary>
/// Additional comma-separated emails to send a copy to
/// </summary>
public string Cc { get; set; }
/// <summary>
/// Additional comma-separated emails to send a hidden copy to
/// </summary>
public string Bcc { get; set; }
/// <summary>
/// Email subject (can contain placeholders)
/// </summary>
public string Subject { get; set; }
/// <summary>
/// Email body (can contain placeholders)
/// </summary>
public string Body { get; set; }
/// <summary>
/// Preheader which is displayed in the preview pane (can contain placeholders)
/// </summary>
public string Preheader { get; set; }
}
}