3
0

Fix SMTP_USER env variable

This commit is contained in:
Denis Arh
2019-06-20 09:41:06 +02:00
parent 2e9e48f873
commit 431bafd44a

View File

@@ -4,7 +4,7 @@ type (
SMTPOpt struct {
Host string `env:"SMTP_HOST"`
Port int `env:"SMTP_PORT"`
User string `env:"SMTP_USERNAM"`
User string `env:"SMTP_USER"`
Pass string `env:"SMTP_PASS"`
From string `env:"SMTP_FROM"`
}