https://github.com/jordan-wright/email/blob/943e75fe5223047b345337ea74d5951d19d229ed/pool.go#L208 ``` conn, err := tls.Dial("tcp", addr, t) if err != nil { return err } c, err := smtp.NewClient(conn, t.ServerName) if err != nil { return err } ``` When using tls and pool is needed, it will be impossible to establish a connection
email/pool.go
Line 208 in 943e75f
When using tls and pool is needed, it will be impossible to establish a connection