1
hutongqing
2024-09-13 3ca95f10e441ff66d4d62f8dfe202bfb26c3c8e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Core.Const
{
    /// <summary>
    /// 分类常量
    /// </summary>
    public class CateGoryConst
    {
        /// <summary>
        /// 邮箱基础
        /// </summary>
        public const string CONFIG_SYS_BaseExmail = "Sys_BaseExmail";
 
        /// <summary>
        /// 邮箱配置
        /// </summary>
        public const string CONFIG_SYS_RegExmail = "Sys_RegExmail";
    }
 
    /// <summary>
    /// 配置Key常量
    /// </summary>
    public class SysConfigConst
    {
        /// <summary>
        ///  邮箱SMTP地址
        /// </summary>
        public const string SMTP_Server = "smtpServer";
 
        /// <summary>
        ///  邮箱SMTP端口
        /// </summary>
        public const string SMTP_Port = "smtpPort";
 
        /// <summary>
        ///  邮箱SMTP账号
        /// </summary>
        public const string SMTP_User = "smtpUser";
 
        /// <summary>
        ///  邮箱SMTP密码
        /// </summary>
        public const string SMTP_Pass = "smtpPass";
 
        /// <summary>
        ///  邮箱标题
        /// </summary>
        public const string SMTP_Title = "smtpTitle";
 
        /// <summary>
        ///  邮箱内容标题
        /// </summary>
        public const string SMTP_ContentTitle = "smtpContentTitle";
        /// <summary>
        ///  邮箱内容标题
        /// </summary>
        public const string SMTP_RegUser = "smtpRegUser";
    }
}