14 lines
308 B
Go
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
|
||
|
}
|