public static Configurer WithDefaultTargetsAndRulesFromAppSettings(this Configurer @this, string logTableName, string mailFrom, string mailTo, bool async = true, bool disableMailInDevelop = true)
 {
     @this.WithDefaultTargetsFromAppSettings(logTableName, mailFrom, mailTo, async);
     @this.WithDefaultRules();
     if (disableMailInDevelop)
     {
         @this.DisableMailRuleWhenInVisualStudio();
     }
     @this.ThrowInternalExceptionsInVisualStudio();
     return(@this);
 }