在Go中将连接升级到TLS

在Go中将连接升级到TLS,第1张

在Go中将连接升级到TLS

沟渠,使用Go自己的smtp.SendMail构建了一个小工具来测试TLS:

package mainimport (  "fmt"  "net/smtp")func main() {  err := smtp.SendMail(    "127.0.0.1:2525",    nil,    "src@test.local",    []string{"dst@test.local"},    []byte("Hello! Just testing."),  )  if err != nil {    panic(err)  }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4907819.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存