You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
651 B
11 lines
651 B
package config
|
|
|
|
type Email struct {
|
|
To string `mapstructure:"to" json:"to" yaml:"to"` // 收件人
|
|
Port int `mapstructure:"port" json:"port" yaml:"port"` // 端口
|
|
From string `mapstructure:"from" json:"from" yaml:"from"` // 收件人
|
|
Host string `mapstructure:"host" json:"host" yaml:"host"` // 服务器地址
|
|
IsSSL bool `mapstructure:"is-ssl" json:"isSSL" yaml:"is-ssl"` // 是否SSL
|
|
Secret string `mapstructure:"secret" json:"secret" yaml:"secret"` // 密钥
|
|
Nickname string `mapstructure:"nickname" json:"nickname" yaml:"nickname"` // 昵称
|
|
}
|