| | |
| | | if (smatch.IsMatch(info.Text))
|
| | | {
|
| | | Match match = smatch.Match(info.Text);
|
| | | if(match.Groups.Count > 2)
|
| | | {
|
| | | MailConfig _mailModel = MailConfig.Get(match.Groups[1].Value);
|
| | | List<string> _mailParalist = new List<string>();
|
| | | if (_mailModel != null)
|
| | |
| | |
|
| | | }
|
| | | }
|
| | |
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | | DebugEx.Log("不需要解析模板邮件");
|
| | | string[] mailContentArray = info.Text.Split(new string[] { "<$_$>" }, StringSplitOptions.RemoveEmptyEntries);
|
| | | if (mailContentArray.Length > 0)
|
| | | if (mailContentArray.Length > 1)
|
| | | {
|
| | | FuncConfigConfig funcMailModel = FuncConfigConfig.Get(mailContentArray[0]);
|
| | | if (funcMailModel != null)
|