Browse Source

修改email基础配置数据

pixel 4 years ago
parent
commit
13d48741c0
2 changed files with 7 additions and 7 deletions
  1. 1 1
      server/config.yaml
  2. 6 6
      server/utils/email.go

+ 1 - 1
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'

+ 6 - 6
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
-}
+}