SaaS CMS has officially launched! Learn more now.

Class ProviderNotificationMessage

Notification message used in INotificationProvider.

Inheritance
System.Object
ProviderNotificationMessage
Namespace: EPiServer.Notification
Assembly: EPiServer.dll
Version: 12.0.3
Syntax
public class ProviderNotificationMessage : Object

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