Summary
Represents the notifications, such as sounds and email.
Syntax
public INotifications Notifications{ get; }
Example 1
Notifications.PlaySound(@"C:\Windows\Media\notify.wav");
Example 2
string emailBody = "this is the message send"; Notifications.SendEmail("from@example.com", "to@example.com", "my subject", emailBody);