Causes an email to be sent when this alert is triggered.
Namespace: StreamBase.LiveView.API.AlertsAssembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 2.2.8.5956 (2.2.8.5956)
Syntax
C# | Visual Basic | Visual C++ |
public interface ISendEmailAction : IAlertRuleAction
Public Interface ISendEmailAction _ Inherits IAlertRuleAction
public interface class ISendEmailAction : IAlertRuleAction
Members
All Members | Properties |
Public Protected | Instance Static | Declared Inherited | XNA Framework Only .NET Compact Framework Only |
Member | Description | |
---|---|---|
ActionType |
The type of action that will be taken when the alert fires.
(Inherited from IAlertRuleAction.) | |
Bcc |
The list of blind carbon copy recipients of the email. This returns the live list, so any modifications
take action immediately. The property can be used like this:
CopyC# mySendMailAction.Bcc.Add("myrecipient@mydomain.com"); | |
Body |
Body of the email to send.
| |
Cc |
The list of carbon copy recipients of the email. This returns the live list, so any modifications
take action immediately. The property can be used like this:
CopyC# mySendMailAction.Cc.Add("myrecipient@mydomain.com"); | |
Description |
The description text for this alert rule.
(Inherited from IAlertRuleAction.) | |
IsEnabled |
Whether this action is currently enabled.
(Inherited from IAlertRuleAction.) | |
Subject |
Subject of the email to send.
| |
To |
The list of recipients of the email. This returns the live list, so any modifications
take action immediately. The property can be used like this:
CopyC# mySendMailAction.To.Add("myrecipient@mydomain.com"); |