package main
import (
"github.com/scott-x/email"
"github.com/scott-x/randomCode"
)
func main() {
subject := "Slimx News"
body := `【温馨提示】:有人正在尝试访问你的博客, 验证码为: `
code, _ := randomCode.Random(6)
body += code
//send email
email.SendEmail(subject, body)
}
golang - 腾讯企业邮箱发送邮件
· One min read