drone-email/pkg/domain/smtp.go
Markus Pesch daf58bb4ca
All checks were successful
continuous-integration/drone/push Build is passing
Initial Commit
2022-07-24 20:33:39 +02:00

14 lines
308 B
Go

package domain
type SMTPSettings struct {
FromAddress string
FromName string
HELOName string
Host string
Password string
Port int
StartTLS bool
TLSInsecureSkipVerify bool
Username string
}