13 lines
518 B
C#
13 lines
518 B
C#
|
namespace Bunny.Dao.Entity.Constant;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 邮箱消息先关常量
|
|||
|
/// </summary>
|
|||
|
public class MailMessageConstant
|
|||
|
{
|
|||
|
public static readonly string EmptySendObject = "空发送对象";
|
|||
|
public static readonly string AddressNotNull = "收件人不能为空";
|
|||
|
public static readonly string TitleNotNull = "标题不能为空";
|
|||
|
public static readonly string SendMessageNotNull = "发送消息不能为空";
|
|||
|
public static readonly string EmailConfigNotFound = "邮箱配置为空";
|
|||
|
}
|