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
496 B

  1. package config
  2. type Email struct {
  3. To string `mapstructure:"to" json:"to" yaml:"to"`
  4. Port int `mapstructure:"port" json:"port" yaml:"port"`
  5. From string `mapstructure:"from" json:"from" yaml:"from"`
  6. Host string `mapstructure:"host" json:"host" yaml:"host"`
  7. IsSSL bool `mapstructure:"is-ssl" json:"isSSL" yaml:"is-ssl"`
  8. Secret string `mapstructure:"secret" json:"secret" yaml:"secret"`
  9. Nickname string `mapstructure:"nickname" json:"nickname" yaml:"nickname"`
  10. }