DataWeb
Search Results for

    Show / Hide Table of Contents

    Class NewsletterModel

    Represents a newsletter message to be sent to a mailing list.

    Inheritance
    object
    NewsletterModel
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: DataWeb.Newsletter
    Assembly: DataWeb.Core.dll
    Syntax
    public class NewsletterModel

    Properties

    Body

    Gets or sets the body of the newsletter message.

    Declaration
    public string Body { get; set; }
    Property Value
    Type Description
    string

    FromName

    Gets or sets the name of the sender.

    Declaration
    public string FromName { get; set; }
    Property Value
    Type Description
    string

    HeaderLinkText

    Gets or sets the text for the link in the newsletter header.

    Declaration
    public string HeaderLinkText { get; set; }
    Property Value
    Type Description
    string

    HeaderLinkUrl

    Gets or sets the URL for the link in the newsletter header.

    Declaration
    public string HeaderLinkUrl { get; set; }
    Property Value
    Type Description
    string

    IdMaster

    Gets or sets the unique identifier.

    Declaration
    public string IdMaster { get; set; }
    Property Value
    Type Description
    string

    IsQuickSend

    Gets or sets a value indicating whether the newsletter will be sent immediately (as a "quick send").

    Declaration
    public bool IsQuickSend { get; set; }
    Property Value
    Type Description
    bool

    MailingListName

    Gets or sets the name of the mailing list to which the newsletter will be sent.

    Declaration
    public string MailingListName { get; set; }
    Property Value
    Type Description
    string

    ScheduledDateTime

    Gets or sets the date and time at which the newsletter will be sent, if it is scheduled to be sent at a later time.

    Declaration
    public DateTimeOffset? ScheduledDateTime { get; set; }
    Property Value
    Type Description
    DateTimeOffset?

    Subject

    Gets or sets the subject of the newsletter message.

    Declaration
    public string Subject { get; set; }
    Property Value
    Type Description
    string

    Template

    Gets or sets the name of the template used for the newsletter message.

    Declaration
    public string Template { get; set; }
    Property Value
    Type Description
    string

    TemplateCulture

    Gets or sets the culture for the newsletter message template.

    Declaration
    public string TemplateCulture { get; set; }
    Property Value
    Type Description
    string

    Title

    Gets or sets the title of the newsletter message.

    Declaration
    public string Title { get; set; }
    Property Value
    Type Description
    string
    In this article
    Back to top Generated by DocFX