11 lines
140 B
Go
11 lines
140 B
Go
|
package config
|
||
|
|
||
|
type MailConfig struct {
|
||
|
Host string
|
||
|
Port int
|
||
|
SSL bool
|
||
|
AuthType string
|
||
|
Username string
|
||
|
Password string
|
||
|
}
|