public static EmailNotifierConfigurationElement FromXmlReader(XmlReader reader)
        {
            var notifier = new EmailNotifierConfigurationElement();

            notifier.ReadSettings(reader);
            return(notifier);
        }