This commit is contained in:
chi
2022-01-08 13:29:22 +09:00
parent fff64fa703
commit e2aa532654
47 changed files with 8448 additions and 2202 deletions

View File

@@ -8,7 +8,8 @@ namespace JobReportMailService
{
public static class Pub
{
public static string vGcode = "EET1P";
// public static string vGcode = "EET1P";
public static CSetting setting;
public static string MailSort(string addr, string except)
{
if (string.IsNullOrEmpty(except)) return addr;
@@ -19,5 +20,10 @@ namespace JobReportMailService
if (alist.Count < 1) return string.Empty;
return string.Join(";", alist);
}
public static void init()
{
setting = new CSetting();
setting.Load();
}
}
}