Click or drag to resize

IAlertService.Send Method (String, String, String, String, Nullable<DateTime>, Nullable<DateTime>)

Send an alert to the specified user at the specified date/time, but only until the specified expiration date/time.

Namespace:  NetQuarry.Services
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
void Send(
	string userId,
	string subject,
	string body,
	string link,
	Nullable<DateTime> deliveryDateUTC,
	Nullable<DateTime> expireDateUTC
)

Parameters

userId
Type: System.String
The target user for the alert.
subject
Type: System.String
The plain text subject of the alert.
body
Type: System.String
The body of the alert. Currently this must be plain text.
link
Type: System.String
A link to the item within the application to which the alert applies, optional.
deliveryDateUTC
Type: System.Nullable<DateTime>
The date/time at which the alert is to be delivered. If null, the alert is delivered ASAP.
expireDateUTC
Type: System.Nullable<DateTime>
The date/time at which the alert expires and will no longer be delivered.
See Also