Bitmap for Email Error Log

Settings for Email Error Log
This commit is contained in:
Rich
2012-04-26 22:05:33 +00:00
parent f40cd6817b
commit 3baf4f6fe9
4 changed files with 75 additions and 1 deletions

View File

@@ -279,5 +279,41 @@ namespace VEPROMS.Properties {
this["FormatPath"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool OutlookEmail {
get {
return ((bool)(this["OutlookEmail"]));
}
set {
this["OutlookEmail"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string SMTPServer {
get {
return ((string)(this["SMTPServer"]));
}
set {
this["SMTPServer"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string SMTPUser {
get {
return ((string)(this["SMTPUser"]));
}
set {
this["SMTPUser"] = value;
}
}
}
}