Commit 90cbfaca by Jacob Bednarz

Add `FromName` to SmtpSettings struct

Updates the `SmtpSettings` struct to include a value for setting the
name of the email sender.
parent 7dc6b69c
...@@ -8,6 +8,7 @@ type SmtpSettings struct { ...@@ -8,6 +8,7 @@ type SmtpSettings struct {
CertFile string CertFile string
KeyFile string KeyFile string
FromAddress string FromAddress string
FromName string
SkipVerify bool SkipVerify bool
SendWelcomeEmailOnSignUp bool SendWelcomeEmailOnSignUp bool
...@@ -23,6 +24,7 @@ func readSmtpSettings() { ...@@ -23,6 +24,7 @@ func readSmtpSettings() {
Smtp.CertFile = sec.Key("cert_file").String() Smtp.CertFile = sec.Key("cert_file").String()
Smtp.KeyFile = sec.Key("key_file").String() Smtp.KeyFile = sec.Key("key_file").String()
Smtp.FromAddress = sec.Key("from_address").String() Smtp.FromAddress = sec.Key("from_address").String()
Smtp.FromName = sec.Key("from_name").String()
Smtp.SkipVerify = sec.Key("skip_verify").MustBool(false) Smtp.SkipVerify = sec.Key("skip_verify").MustBool(false)
emails := Cfg.Section("emails") emails := Cfg.Section("emails")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment