drone-email/pkg/domain/smtp.go

14 lines
308 B
Go
Raw Normal View History

2022-06-27 19:42:59 +00:00
package domain
type SMTPSettings struct {
FromAddress string
FromName string
HELOName string
Host string
Password string
Port int
StartTLS bool
TLSInsecureSkipVerify bool
Username string
}