|   | SecurityProviderUtilitySendNotification Method | 
        
        
            Sends email notification message to the specified recipient using settings specified in the config file.
            
        
        Namespace: GSF.SecurityAssembly: GSF.Security (in GSF.Security.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic static void SendNotification(
	string recipient,
	string subject,
	string body
)
Public Shared Sub SendNotification ( 
	recipient As String,
	subject As String,
	body As String
)
public:
static void SendNotification(
	String^ recipient, 
	String^ subject, 
	String^ body
)
static member SendNotification : 
        recipient : string * 
        subject : string * 
        body : string -> unit GSF.Security.SecurityProviderUtility.SendNotification = function(recipient, subject, body);
Parameters
- recipient  String
- Email address of the notification recipient.
- subject  String
- Subject of the notification.
- body  String
- Content of the notification.
 See Also
See Also