GSF.Security.SecurityProviderUtility.SendNotification C# (CSharp) Method

SendNotification() public static method

Sends email notification message to the specified recipient using settings specified in the config file.
public static SendNotification ( string recipient, string subject, string body ) : void
recipient string Email address of the notification recipient.
subject string Subject of the notification.
body string Content of the notification.
return void
        public static void SendNotification(string recipient, string subject, string body)
        {
            Mail.Send(s_notificationSenderEmail, recipient, subject, body, false, s_notificationSmtpServer);
        }