Add SMTP configuration values
Ref T905
This commit is contained in:
parent
6384f4667b
commit
5b6d17c9b9
1 changed files with 8 additions and 0 deletions
|
@ -171,6 +171,14 @@ type (
|
||||||
}
|
}
|
||||||
|
|
||||||
EmailCfg struct {
|
EmailCfg struct {
|
||||||
|
// SMTP configuration values
|
||||||
|
Host string `ini:"smtp_host"`
|
||||||
|
Port int `ini:"smtp_port"`
|
||||||
|
Username string `ini:"smtp_username"`
|
||||||
|
Password string `ini:"smtp_password"`
|
||||||
|
EnableStartTLS bool `ini:"smtp_enable_start_tls"`
|
||||||
|
|
||||||
|
// Mailgun configuration values
|
||||||
Domain string `ini:"domain"`
|
Domain string `ini:"domain"`
|
||||||
MailgunPrivate string `ini:"mailgun_private"`
|
MailgunPrivate string `ini:"mailgun_private"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue