|
|
@@ -8,6 +8,7 @@ type SmtpSettings struct {
|
|
|
CertFile string
|
|
|
KeyFile string
|
|
|
FromAddress string
|
|
|
+ FromName string
|
|
|
SkipVerify bool
|
|
|
|
|
|
SendWelcomeEmailOnSignUp bool
|
|
|
@@ -23,6 +24,7 @@ func readSmtpSettings() {
|
|
|
Smtp.CertFile = sec.Key("cert_file").String()
|
|
|
Smtp.KeyFile = sec.Key("key_file").String()
|
|
|
Smtp.FromAddress = sec.Key("from_address").String()
|
|
|
+ Smtp.FromName = sec.Key("from_name").String()
|
|
|
Smtp.SkipVerify = sec.Key("skip_verify").MustBool(false)
|
|
|
|
|
|
emails := Cfg.Section("emails")
|