public void RemoveNotificationAddress(string address)
        {
            if (string.IsNullOrEmpty(address))
            {
                throw new ArgumentException(@"Invalid mailbox address.", "address");
            }

            MailServer.DeleteNotificationAddress(address);
        }