Go
golang note
Suhw
Nothing is impossible for a willing heart.
展开
-
Go - net/smtp发送邮件
目的使用go简单实现发送邮件的逻辑基础SMTP简单邮件传输协议(英语:Simple Mail Transfer Protocol,缩写:SMTP)可以简单的使用telnet来连接测试一个SMTP服务器代码package mainimport ( "errors" "fmt" "net/smtp")// 自行实现 smtp.Auth 接口type loginAuth struct { username, password string}func (l login原创 2020-12-03 21:07:59 · 3709 阅读 · 0 评论 -
Go - Linux环境安装配置
环境[root@suhw ~]# cat /etc/redhat-releaseCentOS Linux release 7.7.1908 (Core)下载下载地址可访问 https://golang.org/dl/ 或 https://golang.google.cn/dl/上传将下载好的 gox.x.x.linux-amd64.tar.gz 上传到服务器的 到/usr/local/目录下[root@suhw local]# tar -C /usr/local/ -xzf go1.原创 2020-06-18 15:20:13 · 355 阅读 · 0 评论
分享