From 431bafd44aad9109942eff77892a779d192cf800 Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Thu, 20 Jun 2019 09:41:06 +0200 Subject: [PATCH] Fix SMTP_USER env variable --- pkg/cli/options/smtp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cli/options/smtp.go b/pkg/cli/options/smtp.go index eac3c8b44..5db29bb53 100644 --- a/pkg/cli/options/smtp.go +++ b/pkg/cli/options/smtp.go @@ -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"` }