This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
summer-utils/mailer/smtp-config.go

12 lines
280 B
Go

package mailer
type SmtpConfig struct {
Cert string `yaml:"certificate"`
StartTls bool `yaml:"startTls"`
Tls bool `yaml:"tls"`
Server string `yaml:"server"`
From string `yaml:"from"`
Username string `yaml:"username"`
Password string `yaml:"password"`
}