SaaS CMS has officially launched! Learn more now.

Class ProviderNotificationMessage

Notification message used in INotificationProvider.

Inheritance
System.Object
ProviderNotificationMessage
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Notification
Assembly: EPiServer.dll
Version: 11.20.7
Syntax
public class ProviderNotificationMessage

Constructors

ProviderNotificationMessage()

Declaration
public ProviderNotificationMessage()

Properties

Content

The content of the message

Declaration
public string Content { get; set; }
Property Value
Type Description
System.String

Format

The format of the message.

Declaration
public NotificationFormat Format { get; set; }
Property Value
Type Description
NotificationFormat

RecipientAddresses

The address(es) to the receiver(s) of the message.

Declaration
public IEnumerable<string> RecipientAddresses { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<System.String>

SenderAddress

The address to the sender of the message.

Declaration
public string SenderAddress { get; set; }
Property Value
Type Description
System.String

SenderDisplayName

The display name of the sender of the message.

Declaration
public string SenderDisplayName { get; set; }
Property Value
Type Description
System.String

Subject

The subject of the message

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

Extension Methods