空大小丸子

golang - 腾讯企业邮箱发送邮件 2 years ago

go
email
277个字符
共有102人围观
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)
}