mirror of
https://github.com/casdoor/casdoor.git
synced 2025-07-01 18:40:18 +08:00
feat: refactor the code in NewSmtpEmailProvider() (#3832)
This commit is contained in:

committed by
GitHub

parent
8b4637aa3a
commit
b6b77da7cf
@ -27,8 +27,7 @@ type SmtpEmailProvider struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func NewSmtpEmailProvider(userName string, password string, host string, port int, typ string, disableSsl bool) *SmtpEmailProvider {
|
func NewSmtpEmailProvider(userName string, password string, host string, port int, typ string, disableSsl bool) *SmtpEmailProvider {
|
||||||
dialer := &gomail.Dialer{}
|
dialer := gomail.NewDialer(host, port, userName, password)
|
||||||
dialer = gomail.NewDialer(host, port, userName, password)
|
|
||||||
if typ == "SUBMAIL" {
|
if typ == "SUBMAIL" {
|
||||||
dialer.TLSConfig = &tls.Config{InsecureSkipVerify: true}
|
dialer.TLSConfig = &tls.Config{InsecureSkipVerify: true}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user