修改了EmailConnection結構體為json配置體

This commit is contained in:
Kynix Chen 2024-07-08 17:58:32 +08:00
parent beb2333d9b
commit d2c7fc3bcf

View File

@ -8,10 +8,10 @@ import (
// EmailConnection结构体
type EmailConnection struct {
Server string // smtp服务器地址
Port int // smtp服务器端口
Username string // smtp登录名
Password string // smtp密码可以是授权码
Server string `json:"server"` // smtp服务器地址
Port int `json:"port"` // smtp服务器端口
Username string `json:"user-name"` // smtp登录名
Password string `json:"password"` // smtp密码可以是授权码
}
/*