diff --git a/server/config.yaml b/server/config.yaml index c03b1eab03030c370a6588655a5a18101fc441a5..3b3f775ee631a024001abc5e62611932153d4981 100644 --- a/server/config.yaml +++ b/server/config.yaml @@ -11,7 +11,7 @@ jwt: # mysql connect configuration mysql: username: root - password: 'root' + password: 'Aa@6447985' path: '127.0.0.1:3306' db-name: 'qmPlus' config: 'charset=utf8mb4&parseTime=True&loc=Local' diff --git a/server/utils/email.go b/server/utils/email.go index 7e87383a3d75b612544ee0f7e3615755aa14ee8d..3a0e724b88e6524cefec5fb737be863f2ad6a423 100644 --- a/server/utils/email.go +++ b/server/utils/email.go @@ -1,10 +1,10 @@ package utils import ( + "crypto/tls" "fmt" - "strings" "net/smtp" - "crypto/tls" + "strings" "gin-vue-admin/global" @@ -31,9 +31,9 @@ func send(to []string, subject string, body string) error { auth := smtp.PlainAuth("", from, secret, host) e := email.NewEmail() - if nickName == "" { + if nickName != "" { e.From = fmt.Sprintf("%s <%s>", nickName, from) - }else{ + } else { e.From = from } e.To = to @@ -43,8 +43,8 @@ func send(to []string, subject string, body string) error { hostAddr := fmt.Sprintf("%s:%d", host, port) if isSSL { err = e.SendWithTLS(hostAddr, auth, &tls.Config{ServerName: host}) - }else{ + } else { err = e.Send(hostAddr, auth) } return err -} \ No newline at end of file +}